Function: cider-history-get-history
cider-history-get-history is a byte-compiled function defined in
cider-history.el.
Signature
(cider-history-get-history)
Documentation
Function to retrieve history from the REPL buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-history.el
(defun cider-history-get-history ()
"Function to retrieve history from the REPL buffer."
(if cider-history-repl-buffer
(buffer-local-value
'cider-repl-input-history
cider-history-repl-buffer)
(error "Variable `cider-history-repl-buffer' not bound to a buffer")))