Function: cider-history-undo-other-window

cider-history-undo-other-window is an interactive and byte-compiled function defined in cider-history.el.

Signature

(cider-history-undo-other-window)

Documentation

Undo the most recent change in the other window's buffer.

You most likely want to use this command for undoing an insertion of text from the *cider-history* buffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-history.el
(defun cider-history-undo-other-window ()
  "Undo the most recent change in the other window's buffer.
You most likely want to use this command for undoing an insertion of
text from the *cider-history* buffer."
  (interactive)
  (with-current-buffer cider-history-repl-buffer
    (undo)))