Function: cider-insert-form-in-repl

cider-insert-form-in-repl is an interactive and byte-compiled function defined in cider-mode.el.

Signature

(cider-insert-form-in-repl &optional ARG)

Documentation

Insert the form point indicates in the REPL buffer.

How the expression is located is controlled by cider-form-targeting. If invoked with a prefix ARG eval the expression after inserting it.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-mode.el
(defun cider-insert-form-in-repl (&optional arg)
  "Insert the form point indicates in the REPL buffer.
How the expression is located is controlled by `cider-form-targeting'.
If invoked with a prefix ARG eval the expression after inserting it."
  (interactive "P")
  (cider-insert-in-repl (cider-last-sexp) arg))