Function: cider-repl-history-previous
cider-repl-history-previous is an interactive and byte-compiled
function defined in cider-repl-history.el.
Signature
(cider-repl-history-previous &optional ARG)
Documentation
Move backward by ARG command history entries.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
(defun cider-repl-history-previous (&optional arg)
"Move backward by ARG command history entries."
(interactive "p")
(cider-repl-history-forward (- arg)))