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