Function: evil-backward-beginning
evil-backward-beginning is a byte-compiled function defined in
evil-common.el.
Signature
(evil-backward-beginning THING &optional COUNT)
Documentation
Move backward to beginning of THING.
The motion is repeated COUNT times. This is the same as calling
evil-backward-beginning with -COUNT.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-common.el
(defun evil-backward-beginning (thing &optional count)
"Move backward to beginning of THING.
The motion is repeated COUNT times. This is the same as calling
`evil-backward-beginning' with -COUNT."
(evil-forward-beginning thing (- (or count 1))))