Function: cider-debug-next
cider-debug-next is an interactive and byte-compiled function defined
in cider-debug.el.
Signature
(cider-debug-next)
Documentation
Step to the next instrumented point in the code being debugged.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-debug.el
;; Named commands for the debugger replies, so they can be invoked outside
;; the single-key session bindings (M-x, the transient menu below, etc.).
(defun cider-debug-next ()
"Step to the next instrumented point in the code being debugged."
(interactive)
(cider-debug-mode-send-reply ":next"))