Function: evil-forward-sentence-begin

evil-forward-sentence-begin is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-forward-sentence-begin &optional COUNT)

Documentation

Move to the next COUNT-th beginning of a sentence or end of a paragraph.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-forward-sentence-begin (count)
  "Move to the next COUNT-th beginning of a sentence or end of a paragraph."
  :jump t
  :type exclusive
  (evil-signal-at-bob-or-eob count)
  (evil-forward-nearest count
                        #'(lambda (_cnt)
                            (evil-forward-beginning 'evil-sentence))
                        #'evil-forward-paragraph))