Function: evil-previous-match

evil-previous-match is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-previous-match &optional COUNT BEG END TYPE)

Documentation

Select previous match.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-text-object evil-previous-match (count &optional _beg _end _type)
  "Select previous match."
  :extend-selection t
  (evil-match 'backward count))