From 2fb76b3ba024a2cf409eedd3727baf4e76ec498b Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 28 Dec 2019 17:39:00 -0500 Subject: [PATCH] Use [escape] instead of ESC to abort company Because rebinding ESC breaks some meta keybinds for tty users. --- modules/config/default/+evil-bindings.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index 0070605f3..91d4fa52d 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -142,7 +142,7 @@ "C-j" #'company-select-next-or-abort "C-k" #'company-select-previous-or-abort "C-s" (λ! (company-search-abort) (company-filter-candidates)) - "ESC" #'company-search-abort)) + [escape] #'company-search-abort)) ;; TAB auto-completion in term buffers (:after comint :map comint-mode-map "TAB" #'company-complete