Function: cider-history-search-backward

cider-history-search-backward is an interactive and byte-compiled function defined in cider-history.el.

Signature

(cider-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-20260822.1520/cider-history.el
(defun cider-history-search-backward (regexp)
  "Move to the previous command history entry matching REGEXP from point."
  (interactive
   (list (cider-history-read-regexp "Search backward" t)))
  (cider-history-search-forward regexp t))