Function: cider-repl-history-update

cider-repl-history-update is an interactive and byte-compiled function defined in cider-repl-history.el.

Signature

(cider-repl-history-update)

Documentation

Update the history buffer to reflect the latest state of the command history.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
(defun cider-repl-history-update ()
  "Update the history buffer to reflect the latest state of the command history."
  (interactive)
  (cl-assert (eq major-mode 'cider-repl-history-mode))
  (cider-repl-history-setup cider-repl-history-repl-window
                            cider-repl-history-repl-buffer
                            (current-buffer))
  (cider-repl-history-resize-window))