Function: cider-repl-previous-matching-input
cider-repl-previous-matching-input is an interactive and byte-compiled
function defined in cider-repl.el.
Signature
(cider-repl-previous-matching-input REGEXP)
Documentation
Find the previous input matching REGEXP.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-previous-matching-input (regexp)
"Find the previous input matching REGEXP."
(interactive "sPrevious element matching (regexp): ")
(cider-terminate-history-search)
(cider-repl--history-replace 'backward regexp))