Function: reftex-select-label-mode
reftex-select-label-mode is an autoloaded, interactive and
byte-compiled function defined in reftex-sel.el.gz.
Signature
(reftex-select-label-mode)
Documentation
Major mode for selecting a label in a LaTeX document.
This buffer was created with RefTeX.
It only has a meaningful keymap when you are in the middle of a
selection process.
To select a label, move the cursor to it and press RET.
Press ? for a summary of important key bindings.
During a selection process, these are the local bindings.
# #<anonymous-function>
% #<anonymous-function>
+ reftex-select-mark-and
, reftex-select-mark-comma
- negative-argument
- reftex-select-mark-to
. reftex-select-show-insertion-point
0 digit-argument
1 digit-argument
2 digit-argument
3 digit-argument
4 digit-argument
5 digit-argument
6 digit-argument
7 digit-argument
8 digit-argument
9 digit-argument
< beginning-of-buffer
<down> reftex-select-next
<follow-link> mouse-face
<mouse-2> reftex-select-mouse-accept
<return> reftex-select-accept
<tab> reftex-select-read-label
<up> reftex-select-previous
> end-of-buffer
? describe-mode
? reftex-select-help
A #<anonymous-function>
C-c C-n reftex-select-next-heading
C-c C-p reftex-select-previous-heading
C-g reftex-select-keyboard-quit
C-n reftex-select-next
C-p reftex-select-previous
DEL scroll-down-command
F #<anonymous-function>
R #<anonymous-function>
RET reftex-select-accept
RET reftex-select-accept
S-SPC scroll-down-command
SPC reftex-select-callback
SPC scroll-up-command
SPC..~ undefined
TAB reftex-select-read-label
V reftex-select-cycle-ref-style-backward
a #<anonymous-function>
b reftex-select-jump-to-previous
c #<anonymous-function>
f reftex-select-toggle-follow
g #<anonymous-function>
g revert-buffer
h describe-mode
l #<anonymous-function>
m reftex-select-mark
n reftex-select-next
p reftex-select-previous
q quit-window
q reftex-select-quit
r #<anonymous-function>
s #<anonymous-function>
t #<anonymous-function>
u reftex-select-unmark
v reftex-select-cycle-ref-style-forward
x #<anonymous-function>
z reftex-select-jump
In addition to any hooks its parent mode special-mode might have run,
this mode runs the hook reftex-select-label-mode-hook, as the final or
penultimate step during initialization.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-sel.el.gz
;;;###autoload
(define-derived-mode reftex-select-label-mode special-mode "LSelect"
"Major mode for selecting a label in a LaTeX document.
This buffer was created with RefTeX.
It only has a meaningful keymap when you are in the middle of a
selection process.
To select a label, move the cursor to it and press RET.
Press `?' for a summary of important key bindings.
During a selection process, these are the local bindings.
\\{reftex-select-label-mode-map}"
(set (make-local-variable 'reftex-select-marked) nil)
(when (syntax-table-p reftex-latex-syntax-table)
(set-syntax-table reftex-latex-syntax-table))
;; We do not set a local map - reftex-select-item does this.
)