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