Variable: TeX-fold-type-list

TeX-fold-type-list is a customizable variable defined in tex-fold.el.

Value

(env macro math)

Documentation

List of item types to consider when folding.

Valid items are the symbols env for environments, macro for macros, math for math macros and comment for comments.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex-fold.el
(defcustom TeX-fold-type-list '(env macro math)
  "List of item types to consider when folding.
Valid items are the symbols `env' for environments, `macro' for
macros, `math' for math macros and `comment' for comments."
  :type '(set (const :tag "Environments" env)
              (const :tag "Macros" macro)
              (const :tag "Math Macros" math)
              (const :tag "Comments" comment)))