Variable: conf-desktop-font-lock-keywords
conf-desktop-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)
("\\_<false\\|true\\_>" 0 'font-lock-constant-face)
("\\_<%[uUfFick%]\\_>" 0 'font-lock-constant-face))
Documentation
Keywords to highlight in Conf Desktop mode.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/conf-mode.el.gz
(defvar conf-desktop-font-lock-keywords
`(,@conf-font-lock-keywords
("\\_<false\\|true\\_>" 0 'font-lock-constant-face)
("\\_<%[uUfFick%]\\_>" 0 'font-lock-constant-face))
"Keywords to highlight in Conf Desktop mode.")