Variable: reftex-index-default-macro

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

Value

(105 "idx")

Documentation

The default index macro for M-x reftex-index-selection-or-word (reftex-index-selection-or-word).

This is a list with (MACRO-KEY DEFAULT-TAG).

MACRO-KEY: Character identifying an index macro - see reftex-index-macros.
DEFAULT-TAG: This is the tag to be used if the macro requires a TAG argument.
             When this is nil and a TAG is needed, RefTeX will ask for it.
             When this is the empty string and the TAG argument of the index
             macro is optional, the TAG argument will be omitted.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-index-default-macro '(?i "idx")
  "The default index macro for \\[reftex-index-selection-or-word].
This is a list with (MACRO-KEY DEFAULT-TAG).

MACRO-KEY:   Character identifying an index macro - see `reftex-index-macros'.
DEFAULT-TAG: This is the tag to be used if the macro requires a TAG argument.
             When this is nil and a TAG is needed, RefTeX will ask for it.
             When this is the empty string and the TAG argument of the index
             macro is optional, the TAG argument will be omitted."
  :group 'reftex-index-support
  :type '(list
          (character :tag "Character identifying default macro")
          (choice    :tag "Default index tag                  "
                  (const nil)
                  (string))))