Variable: cond-let-fontify-mode

cond-let-fontify-mode is a customizable variable defined in cond-let.el.

Value

nil

Documentation

Non-nil if Cond-Let-Fontify mode is enabled.

See the cond-let-fontify-mode(var)/cond-let-fontify-mode(fun) command for a description of this minor mode. Setting this variable directly does not take effect; either customize it (see the info node (emacs)Easy Customization) or call the function cond-let-fontify-mode(var)/cond-let-fontify-mode(fun).

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cond-let-20260817.452/cond-let.el
;;;###autoload
(define-minor-mode cond-let-fontify-mode
  "In Emacs Lisp mode, highlight `$' using `font-lock-variable-name-face'."
  :global t
  :group 'font-lock-extra-types
  (if cond-let-fontify-mode
      (font-lock-add-keywords  'emacs-lisp-mode cond-let-font-lock-keywords t)
    (font-lock-remove-keywords 'emacs-lisp-mode cond-let-font-lock-keywords)))