Variable: LaTeX-paragraph-commands
LaTeX-paragraph-commands is a customizable variable defined in
latex.el.
Value
nil
Documentation
List of LaTeX macros that should have their own line.
The list should contain macro names without the leading backslash.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom LaTeX-paragraph-commands nil
"List of LaTeX macros that should have their own line.
The list should contain macro names without the leading backslash."
:group 'LaTeX-macro
:type '(repeat (string))
:set (lambda (symbol value)
(set-default symbol value)
(setq LaTeX-paragraph-commands-regexp
(LaTeX-paragraph-commands-regexp-make))))