Function: evil-repeat-execute-macro

evil-repeat-execute-macro is a byte-compiled function defined in evil-commands.el.

Signature

(evil-repeat-execute-macro FLAG)

Documentation

Called to record a macro execution.

FLAG is either pre or post if the function is called before resp. after executing the command.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(defun evil-repeat-execute-macro (flag)
  "Called to record a macro execution.
FLAG is either `pre' or `post' if the function is called before resp.
after executing the command."
  (pcase flag
    ('pre (evil-repeat-record (this-command-keys)))
    ('post (evil-repeat-record (string evil-last-register)))))