Function: evil-prev-flyspell-error

evil-prev-flyspell-error is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-prev-flyspell-error &optional COUNT)

Documentation

Go to the COUNT'th spelling mistake preceding point.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-prev-flyspell-error (count)
  "Go to the COUNT'th spelling mistake preceding point."
  :jump t
  (evil-next-flyspell-error (- (or count 1))))