Function: cider-insert-region-in-repl

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

Signature

(cider-insert-region-in-repl START END &optional ARG)

Documentation

Insert the current region in the REPL buffer.

START and END represent the region's boundaries. 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-region-in-repl (start end &optional arg)
  "Insert the current region in the REPL buffer.
START and END represent the region's boundaries.
If invoked with a prefix ARG eval the expression after inserting it."
  (interactive "rP")
  (cider-insert-in-repl
   (buffer-substring-no-properties start end) arg))