From 6a9bfc533275097f88c10c95c28804a014896931 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 8 Sep 2017 23:15:44 +0200 Subject: Emacs: Add company fallback keybind to overriding keymap --- emacs/.emacs.d/main.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index 1844ffd..b51e1f3 100644 --- a/emacs/.emacs.d/main.el +++ b/emacs/.emacs.d/main.el @@ -1137,8 +1137,8 @@ (use-package company :commands (company-mode) :diminish "Cmpl" - :bind (("C-" . company-complete) - ("TAB" . company-indent-or-complete-common)) + :bind* (("C-" . company-complete)) + :bind (("TAB" . company-indent-or-complete-common)) :init (progn (add-hook 'prog-mode-hook #'company-mode-on) (setq company-backends '(company-bbdb company-web-html company-tern company-nxml company-css company-eclim company-semantic company-elisp -- cgit 1.4.1