Variable: reftex-auto-view-crossref

reftex-auto-view-crossref is a customizable variable defined in reftex-vars.el.gz.

Value

t

Documentation

Non-nil means, initially turn automatic viewing of crossref info on.

Automatic viewing of crossref info normally uses the echo area. Whenever point is idle for more than reftex-idle-time seconds on the argument of a \ref or \cite macro, and no other message is being displayed, the echo area will display information about that cross reference. You can also set the variable to the symbol window. In this case a small temporary window is used for the display. This feature can be turned on and off from the menu
(Ref->Options).

Probably introduced at or before Emacs version 20.4.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-auto-view-crossref t
  "Non-nil means, initially turn automatic viewing of crossref info on.
Automatic viewing of crossref info normally uses the echo area.
Whenever point is idle for more than `reftex-idle-time' seconds on the
argument of a \\ref or \\cite macro, and no other message is being
displayed, the echo area will display information about that cross
reference.  You can also set the variable to the symbol `window'.  In
this case a small temporary window is used for the display.
This feature can be turned on and off from the menu
\(Ref->Options)."
  :group 'reftex-viewing-cross-references
  :type '(choice (const :tag "off" nil)
                 (const :tag "in Echo Area" t)
                 (const :tag "in Other Window" window)))