Variable: conf-font-lock-keywords

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

Value

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

Documentation

Keywords to highlight in Conf mode.

Source Code

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