Function: reftex-toc-toggle-index

reftex-toc-toggle-index is an interactive and byte-compiled function defined in reftex-toc.el.gz.

Signature

(reftex-toc-toggle-index ARG)

Documentation

Toggle inclusion of index in *toc* buffer.

With prefix arg, prompt for an index tag and include only entries of that specific index.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-toc.el.gz
(defun reftex-toc-toggle-index (arg)
  "Toggle inclusion of index in *toc* buffer.
With prefix arg, prompt for an index tag and include only entries of that
specific index."
  (interactive "P")
  (setq reftex-toc-include-index-entries
        (if arg (reftex-index-select-tag)
          (not reftex-toc-include-index-entries)))
  (reftex-toc-revert))