Function: cider-debug-eval

cider-debug-eval is an interactive and byte-compiled function defined in cider-debug.el.

Signature

(cider-debug-eval)

Documentation

Read an expression and evaluate it in the debugger's lexical scope.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-debug.el
(defun cider-debug-eval ()
  "Read an expression and evaluate it in the debugger's lexical scope."
  (interactive)
  (cider-debug-mode-send-reply ":eval"))