Function: cider-repl-history-search-backward
cider-repl-history-search-backward is an interactive and byte-compiled
function defined in cider-repl-history.el.
Signature
(cider-repl-history-search-backward REGEXP)
Documentation
Move to the previous command history entry matching REGEXP from point.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
(defun cider-repl-history-search-backward (regexp)
"Move to the previous command history entry matching REGEXP from point."
(interactive
(list (cider-repl-history-read-regexp "Search backward" t)))
(cider-repl-history-search-forward regexp t))