Function: evil-forward-section-end

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

Signature

(evil-forward-section-end &optional COUNT)

Documentation

Move the cursor to the end of the COUNT-th next section.

Key Bindings

Source Code

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