Function: reftex-toc-show-help

reftex-toc-show-help is an interactive and byte-compiled function defined in reftex-toc.el.gz.

Signature

(reftex-toc-show-help)

Documentation

Show a summary of special key bindings.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-toc.el.gz
(defun reftex-toc-show-help ()
  "Show a summary of special key bindings."
  (interactive)
  (reftex-toc-dframe-p nil 'error)
  (with-output-to-temp-buffer "*RefTeX Help*"
    (let ((help (substitute-command-keys reftex-toc-help)))
      (with-current-buffer standard-output
        (insert help))))
  (reftex-enlarge-to-fit "*RefTeX Help*" t)
  ;; If follow mode is active, arrange to delay it one command
  (if reftex-toc-follow-mode
      (setq reftex-toc-follow-mode 1)))