Variable: reftex-index-default-tag
reftex-index-default-tag is a customizable variable defined in
reftex-vars.el.gz.
Value
"idx"
Documentation
Default index tag.
When working with multiple indexes, RefTeX queries for an index tag when creating index entries or displaying a specific index. This variable controls the default offered for these queries. The default can be selected with RET during selection or completion. Valid values of this variable are:
nil Do not provide a default index
"tag" The default index tag given as a string, e.g. "idx".
last The last used index tag will be offered as default.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-index-default-tag "idx"
"Default index tag.
When working with multiple indexes, RefTeX queries for an index tag when
creating index entries or displaying a specific index. This variable controls
the default offered for these queries. The default can be selected with RET
during selection or completion. Valid values of this variable are:
nil Do not provide a default index
\"tag\" The default index tag given as a string, e.g. \"idx\".
last The last used index tag will be offered as default."
:group 'reftex-index-support
:type '(choice
(const :tag "no default" nil)
(const :tag "last used " last)
(string :tag "index tag " "idx")))