Function: cider-repl-history-insert-and-quit
cider-repl-history-insert-and-quit is an interactive and byte-compiled
function defined in cider-repl-history.el.
Signature
(cider-repl-history-insert-and-quit)
Documentation
Insert the item into the REPL buffer, and close *cider-repl-history*.
The text is always inserted at the very bottom of the REPL buffer. If your cursor is already at the bottom, it is advanced to the end of the inserted text. If your cursor is somewhere else, the cursor is not moved, but the text is still inserted at the end.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
(defun cider-repl-history-insert-and-quit ()
"Insert the item into the REPL buffer, and close *cider-repl-history*.
The text is always inserted at the very bottom of the REPL buffer. If your
cursor is already at the bottom, it is advanced to the end of the inserted
text. If your cursor is somewhere else, the cursor is not moved, but the
text is still inserted at the end."
(interactive)
(cider-repl-history-do-insert (current-buffer) (point)))