Function: cider-repl-history
cider-repl-history is an autoloaded, interactive and byte-compiled
function defined in cider-repl-history.el.
Signature
(cider-repl-history)
Documentation
Display items in the CIDER command history in another buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
;;;###autoload
(defun cider-repl-history ()
"Display items in the CIDER command history in another buffer."
(interactive)
(when (eq major-mode 'cider-repl-history-mode)
(user-error "Already viewing the CIDER command history"))
(let* ((repl-win (selected-window))
(repl-buf (window-buffer repl-win))
(buf (get-buffer-create cider-repl-history-buffer)))
(cider-repl-history-setup repl-win repl-buf buf)
(pop-to-buffer buf)
(cider-repl-history-resize-window)))