Function: cider-eval-defun-up-to-point
cider-eval-defun-up-to-point is an interactive and byte-compiled
function defined in cider-eval.el.
Signature
(cider-eval-defun-up-to-point &optional OUTPUT-TO-CURRENT-BUFFER)
Documentation
Evaluate the current toplevel form up to point.
If invoked with OUTPUT-TO-CURRENT-BUFFER, print the result in the current buffer. It constructs an expression to eval in the following manner:
- It find the code between the point and the start of the toplevel expression;
- It balances this bit of code by closing all open expressions;
- It evaluates the resulting code using cider-interactive-eval.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defun cider-eval-defun-up-to-point (&optional output-to-current-buffer)
"Evaluate the current toplevel form up to point.
If invoked with OUTPUT-TO-CURRENT-BUFFER, print the result in the current
buffer. It constructs an expression to eval in the following manner:
- It find the code between the point and the start of the toplevel expression;
- It balances this bit of code by closing all open expressions;
- It evaluates the resulting code using `cider-interactive-eval'."
(interactive "P")
(let* ((beg-of-defun (save-excursion (beginning-of-defun-raw) (point)))
(code (buffer-substring-no-properties beg-of-defun (point)))
(code (cider--insert-closing-delimiters code)))
(cider-interactive-eval code
(when output-to-current-buffer
(cider-eval-print-handler))
(list beg-of-defun (point))
(cider--nrepl-pr-request-plist))))