Function: evil-repeat-changes
evil-repeat-changes is a byte-compiled function defined in
evil-repeat.el.
Signature
(evil-repeat-changes FLAG)
Documentation
Repeation recording function for commands that are repeated by buffer changes.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-repeat.el
(defun evil-repeat-changes (flag)
"Repeation recording function for commands that are repeated by buffer changes."
(cond
((eq flag 'pre)
(add-hook 'after-change-functions #'evil-repeat-change-hook nil t)
(evil-repeat-start-record-changes))
((eq flag 'post)
(remove-hook 'after-change-functions #'evil-repeat-change-hook t)
(evil-repeat-finish-record-changes))))