Variable: sh-indent-after-do

sh-indent-after-do is a customizable variable defined in sh-script.el.gz.

Value

+

Documentation

How much to indent a line after a do statement.

This is used when the do is the first word of the line. This is relative to the statement before the do, typically a while, until, for, repeat or select statement.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defcustom sh-indent-after-do '+
  "How much to indent a line after a `do' statement.
This is used when the `do' is the first word of the line.
This is relative to the statement before the `do', typically a
`while', `until', `for', `repeat' or `select' statement."
  :type `(choice ,@ sh-number-or-symbol-list)
  :group 'sh-indentation)