Function: evil-backward-sentence-begin

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

Signature

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

Documentation

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

Key Bindings

Source Code

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