Function: evil-find-char-backward

evil-find-char-backward is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-find-char-backward &optional COUNT CHAR)

Documentation

Move to the previous COUNT'th occurrence of CHAR.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-find-char-backward (count char)
  "Move to the previous COUNT'th occurrence of CHAR."
  :type exclusive
  (interactive "<c><C>")
  (evil-find-char (- (or count 1)) char))