Variable: TeX-complete-expert-commands
TeX-complete-expert-commands is a customizable variable defined in
tex.el.
Value
nil
Documentation
Complete macros and environments marked as expert commands.
Possible values are nil, t, or a list of style names.
- nil Don't complete expert commands (default).
- t Always complete expert commands.
- (STYLES ...) Only complete expert commands of STYLES.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defcustom TeX-complete-expert-commands nil
"Complete macros and environments marked as expert commands.
Possible values are nil, t, or a list of style names.
- nil Don't complete expert commands (default).
- t Always complete expert commands.
- (STYLES ...) Only complete expert commands of STYLES."
:group 'TeX-macro
:type '(choice (const :tag "Don't complete expert commands" nil)
(const :tag "Always complete expert commands" t)
(repeat :tag "Complete expert commands of certain styles" string)))