Function: reftex-select-next

reftex-select-next is an interactive and byte-compiled function defined in reftex-sel.el.gz.

Signature

(reftex-select-next &optional ARG)

Documentation

Move to next selectable item.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-sel.el.gz
(defun reftex-select-next (&optional arg)
  "Move to next selectable item."
  (interactive "p")
  (setq reftex-callback-fwd t)
  (or (eobp) (forward-char 1))
  (re-search-forward "^[^. \t\n\r]" nil t arg)
  (beginning-of-line 1))