Function: evil-forward-section-begin

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

Signature

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

Documentation

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

Key Bindings

Source Code

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