Function: cider-repl-history-save
cider-repl-history-save is an interactive and byte-compiled function
defined in cider-repl.el.
Signature
(cider-repl-history-save &optional FILENAME)
Documentation
Save the current REPL input history to FILENAME.
FILENAME defaults to the value of cider-repl-history-file.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-history-save (&optional filename)
"Save the current REPL input history to FILENAME.
FILENAME defaults to the value of `cider-repl-history-file'."
(interactive (list (cider-repl--history-read-filename)))
(let* ((file (or filename cider-repl-history-file)))
(cider-repl--history-write file)))