Variable: docTeX-indent-inner-fixed
docTeX-indent-inner-fixed is a variable defined in latex.el.
Value
(("\\\\\\(begin\\|end\\)[ ]*{macrocode\\*?}" 4 t)
("\\\\\\(begin\\|end\\)[ ]*{\\(macro\\|environment\\)\\*?}" 0 nil)
("\\\\\\(begin\\|end\\)[ ]*{verbatim\\*?}" 0 t))
Documentation
List of items which should have a fixed inner indentation.
The items consist of three parts. The first is a regular expression which should match the respective string. The second is the amount of spaces to be used for indentation. The third toggles if comment padding is relevant or not. If t padding is part of the amount given, if nil the amount of spaces will be inserted after potential padding.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defvar docTeX-indent-inner-fixed
`((,(concat (regexp-quote TeX-esc)
"\\(begin\\|end\\)[ \t]*{macrocode\\*?}")
4 t)
(,(concat (regexp-quote TeX-esc)
"\\(begin\\|end\\)[ \t]*{\\(macro\\|environment\\)\\*?}")
0 nil)
(,(concat (regexp-quote TeX-esc)
"\\(begin\\|end\\)[ \t]*{verbatim\\*?}")
0 t))
"List of items which should have a fixed inner indentation.
The items consist of three parts. The first is a regular
expression which should match the respective string. The second
is the amount of spaces to be used for indentation. The third
toggles if comment padding is relevant or not. If t padding is
part of the amount given, if nil the amount of spaces will be
inserted after potential padding.")