Function: evil-repeat-record-change
evil-repeat-record-change is a byte-compiled function defined in
evil-repeat.el.
Signature
(evil-repeat-record-change RELPOS INS NDEL)
Documentation
Record the current buffer changes during a repeat.
If CHANGE is specified, it is added to evil-repeat-changes(var)/evil-repeat-changes(fun).
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-repeat.el
(defun evil-repeat-record-change (relpos ins ndel)
"Record the current buffer changes during a repeat.
If CHANGE is specified, it is added to `evil-repeat-changes'."
(when (evil-repeat-recording-p)
(push (list relpos ins ndel) evil-repeat-changes)))