Function: evil-backward-word-begin
evil-backward-word-begin is an interactive and byte-compiled function
defined in evil-commands.el.
Signature
(evil-backward-word-begin &optional COUNT BIGWORD)
Documentation
Move the cursor to the beginning of the COUNT-th previous word.
If BIGWORD is non-nil, move by WORDS.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-backward-word-begin (count &optional bigword)
"Move the cursor to the beginning of the COUNT-th previous word.
If BIGWORD is non-nil, move by WORDS."
:type exclusive
(let ((thing (if bigword 'evil-WORD 'evil-word)))
(evil-signal-at-bob-or-eob (- (or count 1)))
(evil-backward-beginning thing count)))