Function: reftex-index-goto-toc

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

Signature

(reftex-index-goto-toc &rest IGNORE)

Documentation

Switch to the table of contents of the current document.

The function will go to the section where the entry at point was defined.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-index.el.gz
(defun reftex-index-goto-toc (&rest _ignore)
  "Switch to the table of contents of the current document.
The function will go to the section where the entry at point was defined."
  (interactive)
  (if (get-text-property (point) :data)
      (reftex-index-goto-entry)
    (switch-to-buffer (marker-buffer reftex-index-return-marker)))
  (delete-other-windows)
  (reftex-toc))