Variable: cider-debug-use-overlays

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

Value

t

Documentation

Whether to highlight debugging information with overlays.

Takes the same possible values as cider-use-overlays, but only applies to values displayed during debugging sessions. To control the overlay that lists possible keys above the current function, configure cider-debug-prompt instead.

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

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-debug.el
(defcustom cider-debug-use-overlays t
  "Whether to highlight debugging information with overlays.
Takes the same possible values as `cider-use-overlays', but only applies to
values displayed during debugging sessions.
To control the overlay that lists possible keys above the current function,
configure `cider-debug-prompt' instead."
  :type '(choice (const :tag "End of line" t)
                 (const :tag "Bottom of screen" nil)
                 (const :tag "Both" both))
  :package-version '(cider . "0.9.1"))