Function: reftex-select-jump
reftex-select-jump is an interactive and byte-compiled function
defined in reftex-sel.el.gz.
Signature
(reftex-select-jump ARG)
Documentation
Jump to a specific section. E.g. '3 z' jumps to section 3.
Useful for large TOC's.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-sel.el.gz
(defun reftex-select-jump (arg)
"Jump to a specific section. E.g. '3 z' jumps to section 3.
Useful for large TOC's."
(interactive "P")
(goto-char (point-min))
(re-search-forward
(concat "^ *" (number-to-string (if (numberp arg) arg 1)) " ")
nil t)
(beginning-of-line))