Function: cider--debug-quit
cider--debug-quit is a byte-compiled function defined in
cider-debug.el.
Signature
(cider--debug-quit)
Documentation
Send a :quit reply to the debugger. Used in hooks.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-debug.el
(defun cider--debug-quit ()
"Send a :quit reply to the debugger. Used in hooks."
(when cider--debug-mode
(cider-debug-mode-send-reply ":quit")
(message "Quitting debug session")))