Variable: conf-toml-mode-hook
conf-toml-mode-hook is a variable defined in conf-mode.el.gz.
Value
nil
Documentation
Hook run after entering Conf[TOML] mode.
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/conf-mode.el.gz
;;;###autoload
(define-derived-mode conf-toml-mode conf-mode "Conf[TOML]"
"Conf Mode starter for TOML files.
Comments start with `#' and \"assignments\" are with `='.
For details see `conf-mode'. Example:
# Conf mode font-locks this right with \\[conf-toml-mode]
\[entry]
value = \"some string\""
(conf-mode-initialize "#" 'conf-toml-font-lock-keywords)
(setq-local conf-assignment-column 0)
(setq-local conf-assignment-sign ?=))