Variable: sh-indent-after-loop-construct

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

Value

+

Documentation

How much to indent a statement after a loop construct.

This variable is used when the keyword do is on the same line as the loop statement (e.g., until, while or for). If the do is on a line by itself, then sh-indent-after-do is used instead.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defcustom sh-indent-after-loop-construct '+
  "How much to indent a statement after a loop construct.

This variable is used when the keyword `do' is on the same line as the
loop statement (e.g., `until', `while' or `for').
If the `do' is on a line by itself, then `sh-indent-after-do' is used instead."
  :type `(choice ,@ sh-number-or-symbol-list)
  :group 'sh-indentation)