Home Gen498 @ 2025-04-10-12:58

This commit is contained in:
2025-04-10 12:58:53 +02:00
parent 803bdb1a88
commit 20e7db2324
3 changed files with 18 additions and 9 deletions

View File

@@ -0,0 +1,8 @@
;; accept completion from copilot and fallback to company
(use-package! copilot
:hook (prog-mode . copilot-mode)
:bind (:map copilot-completion-map
("<tab>" . 'copilot-accept-completion)
("TAB" . 'copilot-accept-completion)
("C-TAB" . 'copilot-accept-completion-by-word)
("C-<tab>" . 'copilot-accept-completion-by-word)))