Unbind TAB in comint buffers

They usually handle their own completion keybinding on TAB.
This commit is contained in:
Henrik Lissner 2020-08-08 19:47:50 -04:00
parent 40cf6139ed
commit 2e6902f7ae
No known key found for this signature in database
GPG Key ID: 5F6C0EA160557395

View File

@ -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