feat(completion): insert current company-mode selection with tab

THis is in addition to the RET keybinding.
This commit is contained in:
2021-06-24 22:15:38 +01:00
parent c9a05afbdf
commit cb1296ed9c

View File

@@ -13,7 +13,8 @@
;; Scroll through company suggestions with C-n and C-p.
(:map company-active-map
("C-n" . company-select-next)
("C-p" . company-select-previous))
("C-p" . company-select-previous)
("<tab>" . company-complete-selection))
:custom
(company-begin-commands '(self-insert-command))