Function: cider-debug-defun-at-point
cider-debug-defun-at-point is an autoloaded, interactive and
byte-compiled function defined in cider-debug.el.
Signature
(cider-debug-defun-at-point)
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-20260414.1619/cider-debug.el
;;; User commands
;;;###autoload
(defun cider-debug-defun-at-point ()
"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-at-point 'debug-it))