Function: evil-backward-end

evil-backward-end is a byte-compiled function defined in evil-common.el.

Signature

(evil-backward-end THING &optional COUNT)

Documentation

Move backward to end of THING.

The motion is repeated COUNT times. This is the same as calling evil-backward-end with -COUNT.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-backward-end (thing &optional count)
  "Move backward to end of THING.
The motion is repeated COUNT times. This is the same as calling
`evil-backward-end' with -COUNT."
  (evil-forward-end thing (- (or count 1))))