Emacs: set company completion to only happen after inserting text
1 file changed, 2 insertions(+), 1 deletion(-)
jump to
M emacs/init.el → emacs/init.el
@@ -311,7 +311,8 @@ :commands (company-mode) :bind (("C-<tab>" . company-complete)) :init (progn (add-hook 'prog-mode-hook #'company-mode) - (setq company-idle-delay .3))) + (setq company-idle-delay .3 + company-begin-commands '(self-insert-command)))) ;;;; Dates & Times