Variable: sh-first-lines-indent

sh-first-lines-indent is a customizable variable defined in sh-script.el.gz.

Value

0

Documentation

The indentation of the first non-blank non-comment line.

Usually 0 meaning first column. Can be set to a number, or to nil which means leave it as is.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defcustom sh-first-lines-indent 0
  "The indentation of the first non-blank non-comment line.
Usually 0 meaning first column.
Can be set to a number, or to nil which means leave it as is."
  :type '(choice
	  (const :tag "Leave as is"	nil)
	  (integer :tag "Column number"
		   :menu-tag "Indent to this col (0 means first col)" ))
  :group 'sh-indentation)