From 2e6902f7ae4f209aa29fea8c0505c5e0c5ad5830 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 8 Aug 2020 19:47:50 -0400 Subject: [PATCH] Unbind TAB in comint buffers They usually handle their own completion keybinding on TAB. --- modules/config/default/+evil-bindings.el | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index 319e4b3e8..b9ab54bfc 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -132,11 +132,7 @@ "C-j" #'company-select-next-or-abort "C-k" #'company-select-previous-or-abort "C-s" (cmd! (company-search-abort) (company-filter-candidates)) - [escape] #'company-search-abort)) - ;; TAB auto-completion in term buffers - (:after comint :map comint-mode-map - "TAB" #'company-complete - [tab] #'company-complete)) + [escape] #'company-search-abort))) (:when (featurep! :completion ivy) (:after ivy