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