Variable: conf-colon-font-lock-keywords

conf-colon-font-lock-keywords is a variable defined in conf-mode.el.gz.

Value

(("^[   ]*\\[\\(.+\\)\\]" 1 'font-lock-type-face)
 ("^[   ]*\\(.+?\\)[    ]*:"
  (1 'font-lock-variable-name-face))
 ("^[   ]*\\([^:\n]+\\)[        \n]*{[^{}]*?$" 1 'font-lock-type-face prepend))

Documentation

Keywords to highlight in Conf Colon mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/conf-mode.el.gz
(defvar conf-colon-font-lock-keywords
  '(;; [section] (do this first because it may look like a parameter)
    ("^[ \t]*\\[\\(.+\\)\\]" 1 'font-lock-type-face)
    ;; var: val
    ("^[ \t]*\\(.+?\\)[ \t]*:"
     (1 'font-lock-variable-name-face))
    ;; section { ... } (do this last because some assign ...{...)
    ("^[ \t]*\\([^:\n]+\\)[ \t\n]*{[^{}]*?$" 1 'font-lock-type-face prepend))
  "Keywords to highlight in Conf Colon mode.")