Function: cider-debug-defun
cider-debug-defun is an autoloaded, interactive and byte-compiled
function defined in cider-debug.el.
Signature
(cider-debug-defun)
Documentation
Instrument the "top-level" expression at point.
If it is a defn, dispatch the instrumented definition. Otherwise, immediately evaluate the instrumented expression.
While debugged code is being evaluated, the user is taken through the source code and displayed the value of various expressions. At each step, a number of keys will be prompted to the user.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-debug.el
;;; User commands
;;;###autoload
(defun cider-debug-defun ()
"Instrument the \"top-level\" expression at point.
If it is a defn, dispatch the instrumented definition. Otherwise,
immediately evaluate the instrumented expression.
While debugged code is being evaluated, the user is taken through the
source code and displayed the value of various expressions. At each step,
a number of keys will be prompted to the user."
(interactive)
(cider-eval-defun 'debug-it))