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