Variable: conf-toml-font-lock-keywords

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

Value

((conf-toml-recognize-section 0 'font-lock-type-face prepend)
 ("^\\s-*\\(.+?\\)\\(?:\\[\\(.*?\\)\\]\\)?\\s-*="
  (1 'font-lock-variable-name-face) (2 'font-lock-constant-face nil t))
 ("\\_<false\\|true\\_>" 0 'font-lock-keyword-face))

Documentation

Keywords to highlight in Conf TOML mode.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/conf-mode.el.gz
(defvar conf-toml-font-lock-keywords
  '(;; [section] (do this first because it may look like a parameter)
    (conf-toml-recognize-section 0 'font-lock-type-face prepend)
    ;; var=val or var[index]=val
    ("^\\s-*\\(.+?\\)\\(?:\\[\\(.*?\\)\\]\\)?\\s-*="
     (1 'font-lock-variable-name-face)
     (2 'font-lock-constant-face nil t))
    ;; Must be lower-case according to the TOML spec.
    ("\\_<false\\|true\\_>" 0 'font-lock-keyword-face))
  "Keywords to highlight in Conf TOML mode.")