Function: reftex-index-toggle-context
reftex-index-toggle-context is an interactive and byte-compiled
function defined in reftex-index.el.gz.
Signature
(reftex-index-toggle-context)
Documentation
Toggle inclusion of label context in *Index* buffer.
Label context is only displayed when the labels are there as well.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-index.el.gz
(defun reftex-index-toggle-context ()
"Toggle inclusion of label context in *Index* buffer.
Label context is only displayed when the labels are there as well."
(interactive)
(setq reftex-index-include-context (not reftex-index-include-context))
(reftex-index-revert))