From 32ca32490009e53046d43afddd939dba27d9bbb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Sun, 5 Dec 2021 15:47:30 -0500 Subject: [PATCH] company-mode: change to ALT+TAB --- modules/init-company.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/init-company.el b/modules/init-company.el index ab0721d..5d89823 100644 --- a/modules/init-company.el +++ b/modules/init-company.el @@ -23,7 +23,7 @@ (set-face-attribute 'company-scrollbar-bg nil :inherit 'company-tooltip :background "gray20") (set-face-attribute 'company-scrollbar-fg nil :background "gray40")) - (global-set-key (kbd "") 'company-indent-or-complete-common) + (global-set-key (kbd "M-TAB") 'company-indent-or-complete-common) ;; Activating globally (global-company-mode t))