Function: evil-backward-paragraph
evil-backward-paragraph is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-backward-paragraph &optional COUNT)
Documentation
Move to the beginning of the COUNT-th previous paragraph.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-backward-paragraph (count)
"Move to the beginning of the COUNT-th previous paragraph."
:jump t
:type exclusive
(evil-signal-at-bob-or-eob (- (or count 1)))
(unless (eobp) (forward-line))
(evil-backward-beginning 'evil-paragraph count)
(unless (bobp) (forward-line -1)))