Function: reftex-index-phrases-mode

reftex-index-phrases-mode is an autoloaded, interactive and byte-compiled function defined in reftex-index.el.gz.

Signature

(reftex-index-phrases-mode)

Documentation

Major mode for managing the Index phrases of a LaTeX document.

This buffer was created with RefTeX. To insert new phrases, use
 - C-c \ in the LaTeX document to copy selection or word
 - C-c C-n (reftex-index-new-phrase) in the phrases buffer.

To index phrases use one of:

C-c C-x (reftex-index-this-phrase) index current phrase
C-c C-f (reftex-index-next-phrase) index next phrase (or N with prefix arg)
C-c C-a (reftex-index-all-phrases) index all phrases
C-c C-d (reftex-index-remaining-phrases) index current and following phrases
C-c C-r (reftex-index-region-phrases) index the phrases in the region

You can sort the phrases in this buffer with C-c C-s (reftex-index-sort-phrases). To display information about the phrase at point, use C-c TAB (reftex-index-phrases-info).

For more information see the RefTeX User Manual.

Here are all local bindings.

C-c C-a reftex-index-all-phrases
C-c C-c reftex-index-phrases-save-and-return
C-c C-d reftex-index-remaining-phrases
C-c C-f reftex-index-next-phrase
C-c C-n reftex-index-new-phrase
C-c C-r reftex-index-region-phrases
C-c C-s reftex-index-sort-phrases
C-c C-t reftex-index-find-next-conflict-phrase
C-c C-x reftex-index-this-phrase
C-c RET reftex-index-phrases-set-macro-key
C-c TAB reftex-index-phrases-info
TAB self-insert-command

This mode runs the hook reftex-index-phrases-mode-hook, as the final or penultimate step during initialization.

Key Bindings

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)))