Function: evil-clear-command-keys
evil-clear-command-keys is a byte-compiled function defined in
evil-repeat.el.
Signature
(evil-clear-command-keys)
Documentation
Clear this-command-keys and all information about the current command keys.
Calling this function prevents further recording of the keys that invoked the current command
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-repeat.el
(defun evil-clear-command-keys ()
"Clear `this-command-keys' and all information about the current command keys.
Calling this function prevents further recording of the keys that
invoked the current command"
(clear-this-command-keys t)
(setq evil-repeat-keys ""))