fix(emacs/lean-company): only activate auto-completion when TAB is pressed
This commit is contained in:
parent
6c483467dd
commit
c365f6b9ab
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
|||
(defun company-lean-hook ()
|
||||
(set (make-local-variable 'company-backends) '(company-lean))
|
||||
(setq-local company-tooltip-limit 20) ; bigger popup window
|
||||
(setq-local company-idle-delay .3) ; decrease delay before autocompletion popup shows
|
||||
(setq-local company-idle-delay nil) ; decrease delay before autocompletion popup shows
|
||||
(setq-local company-echo-delay 0) ; remove annoying blinking
|
||||
(setq-local company-begin-commands '(self-insert-command)) ; start autocompletion only after typing
|
||||
(company-mode t))
|
||||
|
|
Loading…
Reference in a new issue