Variable: reftex-index-phrases-mode-hook
reftex-index-phrases-mode-hook is a variable defined in
reftex-index.el.gz.
Value
nil
Documentation
Hook run after entering Phrases mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-index.el.gz
;; NB this is a global autoload - see reftex.el.
;;;###autoload
(define-derived-mode reftex-index-phrases-mode fundamental-mode "Phrases"
"Major mode for managing the Index phrases of a LaTeX document.
This buffer was created with RefTeX. \\<reftex-index-phrases-mode-map>
To insert new phrases, use
- `C-c \\' in the LaTeX document to copy selection or word
- `\\[reftex-index-new-phrase]' in the phrases buffer.
To index phrases use one of:
\\[reftex-index-this-phrase] index current phrase
\\[reftex-index-next-phrase] index next phrase (or N with prefix arg)
\\[reftex-index-all-phrases] index all phrases
\\[reftex-index-remaining-phrases] index current and following phrases
\\[reftex-index-region-phrases] index the phrases in the region
You can sort the phrases in this buffer with \\[reftex-index-sort-phrases].
To display information about the phrase at point, use \\[reftex-index-phrases-info].
For more information see the RefTeX User Manual.
Here are all local bindings.
\\{reftex-index-phrases-mode-map}"
:syntax-table reftex-index-phrases-syntax-table
(set (make-local-variable 'font-lock-defaults)
reftex-index-phrases-font-lock-defaults)
(set (make-local-variable 'reftex-index-phrases-marker) (make-marker)))