Variable: cider-debug-prompt

cider-debug-prompt is a customizable variable defined in cider-debug.el.

Value

overlay

Documentation

If and where to show the keys while debugging.

If minibuffer, show it in the minibuffer along with the return value. If overlay, show it in an overlay above the current function. If t, do both. If nil, don't list available keys at all.

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-debug.el
(defcustom cider-debug-prompt 'overlay
  "If and where to show the keys while debugging.
If `minibuffer', show it in the minibuffer along with the return value.
If `overlay', show it in an overlay above the current function.
If t, do both.
If nil, don't list available keys at all."
  :type '(choice (const :tag "Show in minibuffer" minibuffer)
                 (const :tag "Show above function" overlay)
                 (const :tag "Show in both places" t)
                 (const :tag "Don't list keys" nil))
  :package-version '(cider . "0.10.0"))