Function: cider-debug-force-out
cider-debug-force-out is an interactive and byte-compiled function
defined in cider-debug.el.
Signature
(cider-debug-force-out)
Documentation
Step out of the sexp being debugged, skipping any breakpoints inside it.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-debug.el
(defun cider-debug-force-out ()
"Step out of the sexp being debugged, skipping any breakpoints inside it."
(interactive)
(cider-debug-mode-send-reply ":out" nil t))