Variable: latex-noindent-environments

latex-noindent-environments is a customizable variable defined in tex-mode.el.gz.

Value

("document")

Documentation

Environments whose content is not indented by tex-indent-basic.

This variable was added, or its default value changed, in Emacs 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/tex-mode.el.gz
(defcustom latex-noindent-environments '("document")
  "Environments whose content is not indented by `tex-indent-basic'."
  :type '(repeat string)
  :safe (lambda (x) (not (memq nil (mapcar #'stringp x))))
  :group 'tex-file
  :version "27.1")