mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
fix(completion/company): fix keybind conflict with copilot-mode
This commit is contained in:
@@ -35,7 +35,13 @@
|
||||
(setq-local company-backends '(company-capf)))
|
||||
|
||||
:config
|
||||
(global-company-mode 1))
|
||||
(global-company-mode 1)
|
||||
|
||||
;; Disable tab and backtab keybindings in company-active-map, as they are used
|
||||
;; for Copilot completion, and we have a global TAB keybinding for triggering
|
||||
;; and accepting company-mode completions.
|
||||
(unbind-key "TAB" company-active-map)
|
||||
(unbind-key "<backtab>" company-active-map))
|
||||
|
||||
(use-package company-box
|
||||
:if window-system
|
||||
|
||||
Reference in New Issue
Block a user