Variable: reftex-index-phrases-font-lock-keywords

reftex-index-phrases-font-lock-keywords is a variable defined in reftex-index.el.gz.

Value

(("^[   ]*%.*" . font-lock-comment-face)
 ("^\\(>>>INDEX_MACRO_DEFINITION:\\)[  ]+\\(\\S-\\)\\( *	[       ]*\\)\\([^	]*[^    ]\\)\\( *	[       ]*\\)\\(\\S-+\\)"
  (1 font-lock-type-face)
  (2 font-lock-keyword-face)
  (3 'secondary-selection)
  (4 font-lock-function-name-face)
  (5 'secondary-selection)
  (6 font-lock-string-face))
 ("^\\(\\S-?\\)\\(	\\)\\([^	\n]*\\S-\\)\\([         ]*\\)$"
  (1 font-lock-keyword-face)
  (2 'secondary-selection)
  (3 font-lock-string-face)
  (4 'secondary-selection))
 ("^\\(\\S-?\\)\\(	\\)\\([^	]*\\S-\\)\\(	[       ]*\\)\\([^\n	]*\\S-\\)[      ]*$"
  (1 font-lock-keyword-face)
  (2 'secondary-selection)
  (3 font-lock-string-face)
  (4 'secondary-selection)
  (5 font-lock-function-name-face))
 ("^	$" quote secondary-selection))

Documentation

Font lock keywords for reftex-index-phrases-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-index.el.gz
(defvar reftex-index-phrases-font-lock-keywords
  (list
   (cons reftex-index-phrases-comment-regexp 'font-lock-comment-face)
   (list reftex-index-phrases-macrodef-regexp
         '(1 font-lock-type-face)
         '(2 font-lock-keyword-face)
         '(3 'secondary-selection)
         '(4 font-lock-function-name-face)
         '(5 'secondary-selection)
         '(6 font-lock-string-face))
   (list reftex-index-phrases-phrase-regexp1
         '(1 font-lock-keyword-face)
         '(2 'secondary-selection)
         '(3 font-lock-string-face)
         '(4 'secondary-selection))
   (list reftex-index-phrases-phrase-regexp2
         '(1 font-lock-keyword-face)
         '(2 'secondary-selection)
         '(3 font-lock-string-face)
         '(4 'secondary-selection)
         '(5 font-lock-function-name-face))
   '("^\t$" . 'secondary-selection))
  "Font lock keywords for `reftex-index-phrases-mode'.")