From 209937707c3ef1fa192320d3f7610ac4183309cc Mon Sep 17 00:00:00 2001 From: Aaron Jensen Date: Sun, 10 Jan 2021 11:45:42 -0600 Subject: [PATCH] Abort repeat with evil-undo --- evil-commands.el | 1 + 1 file changed, 1 insertion(+) diff --git a/evil-commands.el b/evil-commands.el index 073ffc53a..cdeb1b81e 100644 --- a/evil-commands.el +++ b/evil-commands.el @@ -1628,6 +1628,7 @@ of the block." (evil-define-command evil-undo (count) "Undo COUNT changes in buffer using `evil-undo-function'." + :repeat abort (interactive "*p") (evil--check-undo-system) (funcall evil-undo-function count))