Function: evil-backward-section-end

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

Signature

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

Documentation

Move the cursor to the end 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-end (count)
  "Move the cursor to the end of the COUNT-th previous section."
  :jump t
  :type inclusive
  (evil-signal-at-bob-or-eob (- (or count 1)))
  (end-of-line -1)
  (evil-backward-end 'evil-defun count)
  (unless (eobp) (forward-line)))