Variable: cider-enlighten-mode

cider-enlighten-mode is a customizable variable defined in cider-enlighten.el.

Value

nil

Documentation

Non-nil if Cider-Enlighten mode is enabled.

See the cider-enlighten-mode(var)/cider-enlighten-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 cider-enlighten-mode(var)/cider-enlighten-mode(fun).

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260821.817/cider-enlighten.el
;;;###autoload
(define-minor-mode cider-enlighten-mode
  "Minor mode for displaying locals in debugger-instrumented evaluations."
  :lighter (cider-mode " light")
  :global t
  :group 'cider
  (when cider-enlighten-mode
    ;; resuming enlightenment un-mutes the renderer
    (setq cider-enlighten--suppress nil)))