Function: cider-repl-next-input

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

Signature

(cider-repl-next-input)

Documentation

Cycle forwards through input history.

See cider-previous-input.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-next-input ()
  "Cycle forwards through input history.
See `cider-previous-input'."
  (interactive)
  (cider-repl--history-replace 'forward (cider-repl-history-pattern t)))