Variable: reftex-fref-is-default

reftex-fref-is-default is a customizable variable defined in reftex-vars.el.gz.

Value

nil

Documentation

Non-nil means, the fancyref reference style is used as default.

The value of this variable determines the default which is active when entering the selection process. Instead of nil or t, this may also be a string of type letters indicating the label types for which it should be true.

This variable is obsolete, use reftex-ref-style-default-list instead.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
;;;###autoload(put 'reftex-vref-is-default 'safe-local-variable (lambda (x) (or (stringp x) (symbolp x))))

(defcustom reftex-fref-is-default nil
  "Non-nil means, the fancyref reference style is used as default.
The value of this variable determines the default which is active
when entering the selection process.  Instead of nil or t, this
may also be a string of type letters indicating the label types
for which it should be true.

This variable is obsolete, use `reftex-ref-style-default-list'
instead."
  :group  'reftex-referencing-labels
  :type `(choice :tag "\\fref is default macro" ,@reftex-tmp))