branch: externals/company commit f3aacd77d0135c09227400fef45c54b717d33f2e Author: Dmitry Gutov <dgu...@yandex.ru> Commit: Dmitry Gutov <dgu...@yandex.ru>
Reduce the default company-idle-delay --- NEWS.md | 1 + company.el | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 38098ab..66915d5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,6 +2,7 @@ ## Next +* `company-idle-delay` default reduced to 0.2 (seconds). * The minimum required version of Emacs is now 25.1. * Both built-in options for `company-format-margin-function` require Emacs compiled with SVG support. diff --git a/company.el b/company.el index 1acb46f..227df55 100644 --- a/company.el +++ b/company.el @@ -605,7 +605,7 @@ A character that is part of a valid completion never triggers auto-commit." (function :tag "Predicate function")) :package-version '(company . "0.9.14")) -(defcustom company-idle-delay .5 +(defcustom company-idle-delay .2 "The idle delay in seconds until completion starts automatically. The prefix still has to satisfy `company-minimum-prefix-length' before that happens. The value of nil means no idle completion."