Function: evil-repeat-finish-record-changes
evil-repeat-finish-record-changes is a byte-compiled function defined
in evil-repeat.el.
Signature
(evil-repeat-finish-record-changes)
Documentation
Finish the recording of buffer changes and record them as repeat.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-repeat.el
(defun evil-repeat-finish-record-changes ()
"Finish the recording of buffer changes and record them as repeat."
(when (evil-repeat-recording-p)
(evil-repeat-record `(evil-execute-change
,(nreverse evil-repeat-changes)
,(- (point) evil-repeat-pos)))
(setq evil-repeat-changes nil)))