Function: cider-history-update

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

Signature

(cider-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-20260822.1520/cider-history.el
(defun cider-history-update ()
  "Update the history buffer to reflect the latest state of the command history."
  (interactive)
  (cl-assert (eq major-mode 'cider-history-mode))
  (cider-history-setup cider-history-repl-window
                            cider-history-repl-buffer
                            (current-buffer))
  (cider-history-resize-window))