Function: evil-repeat-motion
evil-repeat-motion is a byte-compiled function defined in
evil-repeat.el.
Signature
(evil-repeat-motion FLAG)
Documentation
Repetition for motions.
Motions are recorded by keystroke but only in Insert state.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-repeat.el
(defun evil-repeat-motion (flag)
"Repetition for motions.
Motions are recorded by keystroke but only in Insert state."
(when (memq evil-state '(insert replace))
(evil-repeat-keystrokes flag)))