branch: elpa/evil-iedit-state commit 000c02aa313664bda9f2c376b1f526c8e490b47b Author: fmdkdd <fmd...@gmail.com> Commit: syl20bnr <sylvain.ben...@gmail.com>
Fix moving cursor when leaving expand-region transient map Use keys that are less likely to be rebound to leave the overlay map of expand-region. --- evil-iedit-state.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evil-iedit-state.el b/evil-iedit-state.el index aa5dd04903..1ab8b04261 100644 --- a/evil-iedit-state.el +++ b/evil-iedit-state.el @@ -163,7 +163,7 @@ If INTERACTIVE is non-nil then COMMAND is called interactively." (evil-iedit-state/iedit-mode arg) ;; hack to leave expand-region temporary overlay map ;; we choose a letter that is not in `iedit state' - (setq unread-command-events (listify-key-sequence "kj"))) + (setq unread-command-events (listify-key-sequence [down up]))) (defadvice er/prepare-for-more-expansions-internal (around iedit/prepare-for-more-expansions-internal activate)