Variable: TeX-fold-auto-reveal-commands
TeX-fold-auto-reveal-commands is a customizable variable defined in
tex-fold.el.
Value
((key-binding [left]) (key-binding [right]) backward-char forward-char
mouse-set-point pop-to-mark-command undo)
Documentation
List of commands that may cause a fold to be revealed.
This list is consulted by the default value of TeX-fold-auto-reveal.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex-fold.el
(defcustom TeX-fold-auto-reveal-commands
'((key-binding [left])
(key-binding [right])
backward-char
forward-char
mouse-set-point
pop-to-mark-command
undo)
"List of commands that may cause a fold to be revealed.
This list is consulted by the default value of `TeX-fold-auto-reveal'."
:type '(repeat (choice (function :tag "Function")
(sexp :tag "Key binding"))))