all repos — nixfiles @ 6a0d3c07f252c66b8935f2d31826829362358dfd

System and user configuration, managed by nix and home-manager

Emacs: use tab, not enter for completion
Alan Pearce alan@alanpearce.eu
Wed, 04 Dec 2019 14:49:01 +0100
commit

6a0d3c07f252c66b8935f2d31826829362358dfd

parent

2ad6fbd70d5f7dadedfc03e1d40b8156d49e28d6

1 files changed, 5 insertions(+), 2 deletions(-)

jump to
M user/emacs/.emacs.d/init.eluser/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))