Variable: cider-debug-prompt-commands
cider-debug-prompt-commands is a customizable variable defined in
cider-debug.el.
Value
((99 "continue" "continue") (67 "continue-all" nil)
(110 "next" "next") (105 "in" "in") (111 "out" "out")
(79 "force-out" nil) (104 "here" "here") (101 "eval" "eval")
(112 "inspect" "inspect") (80 "inspect-prompt" nil)
(108 "locals" "locals") (106 "inject" "inject")
(115 "stacktrace" "stacktrace") (116 "trace" "trace")
(113 "quit" "quit"))
Documentation
A list of debugger command specs.
Specs are in the format (KEY COMMAND-NAME DISPLAY-NAME?) where KEY is a
character which is mapped to the command COMMAND-NAME is a valid debug
command to be passed to the cider-nrepl middleware DISPLAY-NAME is the
string displayed in the debugger overlay
If DISPLAY-NAME is nil, that command is hidden from the overlay but still callable. The rest of the commands are displayed in the same order as this list.
This variable was added, or its default value changed, in cider version 0.24.0.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-debug.el
(defcustom cider-debug-prompt-commands
'((?c "continue" "continue")
(?C "continue-all" nil)
(?n "next" "next")
(?i "in" "in")
(?o "out" "out")
(?O "force-out" nil)
(?h "here" "here")
(?e "eval" "eval")
(?p "inspect" "inspect")
(?P "inspect-prompt" nil)
(?l "locals" "locals")
(?j "inject" "inject")
(?s "stacktrace" "stacktrace")
(?t "trace" "trace")
(?q "quit" "quit"))
"A list of debugger command specs.
Specs are in the format (KEY COMMAND-NAME DISPLAY-NAME?) where KEY is a
character which is mapped to the command COMMAND-NAME is a valid debug
command to be passed to the cider-nrepl middleware DISPLAY-NAME is the
string displayed in the debugger overlay
If DISPLAY-NAME is nil, that command is hidden from the overlay but still
callable. The rest of the commands are displayed in the same order as this
list."
:type '(alist :key-type character
:value-type (list
(string :tag "command name")
(choice (string :tag "display name") (const nil))))
:package-version '(cider . "0.24.0"))