Function: cider-insert-last-sexp-in-repl
cider-insert-last-sexp-in-repl is an interactive and byte-compiled
function defined in cider-mode.el.
Signature
(cider-insert-last-sexp-in-repl &optional ARG)
Documentation
Insert the expression preceding point in the REPL buffer.
If invoked with a prefix ARG eval the expression after inserting it.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-mode.el
(defun cider-insert-last-sexp-in-repl (&optional arg)
"Insert the expression preceding point in the REPL buffer.
If invoked with a prefix ARG eval the expression after inserting it."
(interactive "P")
(cider-insert-in-repl (cider-last-sexp) arg))