Function: cider-repl-history-get-history

cider-repl-history-get-history is a byte-compiled function defined in cider-repl-history.el.

Signature

(cider-repl-history-get-history)

Documentation

Function to retrieve history from the REPL buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
(defun cider-repl-history-get-history ()
  "Function to retrieve history from the REPL buffer."
  (if cider-repl-history-repl-buffer
      (buffer-local-value
       'cider-repl-input-history
       cider-repl-history-repl-buffer)
    (error "Variable `cider-repl-history-repl-buffer' not bound to a buffer")))