Function: evil-forward-paragraph

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

Signature

(evil-forward-paragraph &optional COUNT)

Documentation

Move to the end of the COUNT-th next paragraph.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-forward-paragraph (count)
  "Move to the end of the COUNT-th next paragraph."
  :jump t
  :type exclusive
  (evil-signal-at-bob-or-eob count)
  (evil-forward-end 'evil-paragraph count)
  (unless (eobp) (forward-line)))