Function: cider-repl-history-undo-other-window

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

Signature

(cider-repl-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-repl-history* buffer.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
(defun cider-repl-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-repl-history* buffer."
  (interactive)
  (with-current-buffer cider-repl-history-repl-buffer
    (undo)))