diff options
author | Alan Pearce | 2019-07-04 13:16:49 +0200 |
---|---|---|
committer | Alan Pearce | 2019-07-04 13:17:42 +0200 |
commit | e7482f9d7a372017254b57520a90bf227e63ad91 (patch) | |
tree | 16b2ab23bf6e76f56d4aee1bd48f996572bcd698 | |
parent | e47aa57b5d497415c987aec01152d07502a6622f (diff) | |
download | nixfiles-e7482f9d7a372017254b57520a90bf227e63ad91.tar.lz nixfiles-e7482f9d7a372017254b57520a90bf227e63ad91.tar.zst nixfiles-e7482f9d7a372017254b57520a90bf227e63ad91.zip |
Emacs: don't clobber minibuffer completion
-rw-r--r-- | emacs/.emacs.d/main.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/emacs/.emacs.d/main.el b/emacs/.emacs.d/main.el index ecd257e9..c510a0cd 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))) |