Emacs: use tab, not enter for completion
Alan Pearce alan@alanpearce.eu
Wed, 04 Dec 2019 14:49:01 +0100
1 files changed, 5 insertions(+), 2 deletions(-)
jump to
M user/emacs/.emacs.d/init.el → user/emacs/.emacs.d/init.el
@@ -288,7 +288,7 @@ ";" #'evil-ex) (:states '(normal motion) "g s" #'evil-avy-goto-symbol-1)) -(defvar evil-collection-company-use-tng nil) +(defvar evil-collection-company-use-tng t) (use-package evil-collection :after (evil) :defer 3 @@ -437,7 +437,10 @@ company-dabbrev-ignore-case nil company-begin-commands '(self-insert-command) company-auto-complete #'company-explicit-action-p company-auto-complete-chars '(?\ ?\( ?\) ?.)) - (global-company-mode +1)) + (global-company-mode +1) + (general-unbind company-active-map + "RET" + [return])) :general (:states 'insert "TAB" #'company-indent-or-complete-common))