Function: cider-repl-previous-input

cider-repl-previous-input is an interactive and byte-compiled function defined in cider-repl.el.

Signature

(cider-repl-previous-input)

Documentation

Cycle backwards through input history.

If the last-command was a history navigation command use the same search pattern for this command. Otherwise use the current input as search pattern.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-previous-input ()
  "Cycle backwards through input history.
If the `last-command' was a history navigation command use the
same search pattern for this command.
Otherwise use the current input as search pattern."
  (interactive)
  (cider-repl--history-replace 'backward (cider-repl-history-pattern t)))