Function: forward-evil-sentence
forward-evil-sentence is a byte-compiled function defined in
evil-common.el.
Signature
(forward-evil-sentence &optional COUNT)
Documentation
Move forward COUNT sentences.
Moves point COUNT sentences forward or (- COUNT) sentences
backward if COUNT is negative. This function is the same as
forward-sentence but returns the number of sentences that could
NOT be moved over.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun forward-evil-sentence (&optional count)
"Move forward COUNT sentences.
Moves point COUNT sentences forward or (- COUNT) sentences
backward if COUNT is negative. This function is the same as
`forward-sentence' but returns the number of sentences that could
NOT be moved over."
(evil-motion-loop (dir (or count 1))
(ignore-errors (forward-sentence dir))))