Variable: cider-overlays-use-font-lock

cider-overlays-use-font-lock is a customizable variable defined in cider-overlays.el.

Value

t

Documentation

If non-nil, results overlays are font-locked as Clojure code.

If nil, apply cider-result-overlay-face to the entire overlay instead of font-locking it.

This variable was added, or its default value changed, in cider version 0.10.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-overlays.el
(defcustom cider-overlays-use-font-lock t
  "If non-nil, results overlays are font-locked as Clojure code.
If nil, apply `cider-result-overlay-face' to the entire overlay instead of
font-locking it."
  :group 'cider
  :type 'boolean
  :package-version '(cider . "0.10.0"))