Function: cider-eval-last-sexp-to-repl

cider-eval-last-sexp-to-repl is an interactive and byte-compiled function defined in cider-eval.el.

Signature

(cider-eval-last-sexp-to-repl &optional PREFIX)

Documentation

Evaluate the expression preceding point and insert its result in the REPL.

If invoked with a PREFIX argument, switch to the REPL buffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eval.el
(defun cider-eval-last-sexp-to-repl (&optional prefix)
  "Evaluate the expression preceding point and insert its result in the REPL.
If invoked with a PREFIX argument, switch to the REPL buffer."
  (interactive "P")
  (cider--eval-last-sexp-to-repl prefix (cider--nrepl-pr-request-plist)))