Function: evil-repeat-pop-next
evil-repeat-pop-next is an interactive and byte-compiled function
defined in evil-repeat.el.
Signature
(evil-repeat-pop-next COUNT &optional SAVE-POINT)
Documentation
Same as evil-repeat-pop, but with negative COUNT.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-repeat.el
(evil-define-command evil-repeat-pop-next (count &optional save-point)
"Same as `evil-repeat-pop', but with negative COUNT."
:repeat nil
:suppress-operator t
(interactive (list (prefix-numeric-value current-prefix-arg)
(not evil-repeat-move-cursor)))
(evil-repeat-pop (- count) save-point))