Function: cider--eval-form-to-repl
cider--eval-form-to-repl is a byte-compiled function defined in
cider-eval.el.
Signature
(cider--eval-form-to-repl SWITCH-TO-REPL REQUEST-MAP)
Documentation
Evaluate the form point indicates and insert its result in the REPL, honoring SWITCH-TO-REPL, REQUEST-MAP.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider--eval-form-to-repl (switch-to-repl request-map)
"Evaluate the form point indicates and insert its result in the REPL,
honoring SWITCH-TO-REPL, REQUEST-MAP."
(let ((bounds (cider-last-sexp 'bounds)))
(cider-interactive-eval nil
(cider-insert-eval-handler (cider-current-repl)
bounds
(current-buffer)
(lambda ()
(when switch-to-repl
(cider-switch-to-repl-buffer))))
bounds
request-map)))