summary refs log tree commit diff stats
path: root/emacs/.emacs.d/main.el
diff options
context:
space:
mode:
authorAlan Pearce2019-07-04 13:16:49 +0200
committerAlan Pearce2019-07-04 13:17:42 +0200
commite7482f9d7a372017254b57520a90bf227e63ad91 (patch)
tree16b2ab23bf6e76f56d4aee1bd48f996572bcd698 /emacs/.emacs.d/main.el
parente47aa57b5d497415c987aec01152d07502a6622f (diff)
downloaddotfiles-e7482f9d7a372017254b57520a90bf227e63ad91.tar.lz
dotfiles-e7482f9d7a372017254b57520a90bf227e63ad91.tar.zst
dotfiles-e7482f9d7a372017254b57520a90bf227e63ad91.zip
Emacs: don't clobber minibuffer completion
Diffstat (limited to 'emacs/.emacs.d/main.el')
-rw-r--r--emacs/.emacs.d/main.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el
index ecd257e..c510a0c 100644
--- a/emacs/.emacs.d/main.el
+++ b/emacs/.emacs.d/main.el
@@ -324,8 +324,7 @@ With two prefix arguments, write out the day and month name."
 
 (use-package company-tabnine
   :commands (company-tabnine)
-  :general ([remap completion-at-point] #'company-tabnine-call-other-backends
-            [remap complete-symbol] #'company-tabnine-call-other-backends
+  :general ("<M-tab>" #'company-tabnine-call-other-backends
             "<C-tab>" #'company-tabnine-call-other-backends)
   :config (progn
             (add-to-list 'company-backends #'company-tabnine)))