Add <escape> to blacklisted evil-collection keys

evil-collection is overzealous about its role in aborting things. We
already have our own doom-escape mechanism.
This commit is contained in:
Henrik Lissner 2019-07-12 18:25:28 +02:00
parent 17d7130804
commit f90c0b8040
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395

View File

@ -4,7 +4,7 @@
;; Don't let evil-collection interfere with certain keys
(setq evil-collection-key-blacklist
(list "C-j" "C-k" "gd" "gf" "K" "[" "]" "gz"
(list "C-j" "C-k" "gd" "gf" "K" "[" "]" "gz" "<escape>"
doom-leader-key doom-localleader-key
doom-leader-alt-key doom-localleader-alt-key))