Function: cider-repl-delete-current-input
cider-repl-delete-current-input is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-repl-delete-current-input)
Documentation
Delete all text after the prompt.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-delete-current-input ()
"Delete all text after the prompt."
(goto-char (point-max))
(delete-region cider-repl-input-start-mark (point-max)))