dgutov pushed a commit to branch master
in repository elpa.
commit f723a511968f628e41f06d42facde0d1121b66c9
Author: Dmitry Gutov <[email protected]>
Date: Thu Jan 30 08:18:41 2014 +0200
Lower dabbrev time limits
Computers are faster now; I prefer things to be snappier
---
company-dabbrev-code.el | 2 +-
company-dabbrev.el | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/company-dabbrev-code.el b/company-dabbrev-code.el
index 408d2b2..ff47390 100644
--- a/company-dabbrev-code.el
+++ b/company-dabbrev-code.el
@@ -55,7 +55,7 @@ See also `company-dabbrev-code-time-limit'."
(const :tag "Same major mode" t)
(const :tag "All" all)))
-(defcustom company-dabbrev-code-time-limit .5
+(defcustom company-dabbrev-code-time-limit .1
"Determines how long `company-dabbrev-code' should look for matches."
:type '(choice (const :tag "Off" nil)
(number :tag "Seconds")))
diff --git a/company-dabbrev.el b/company-dabbrev.el
index afe60f2..6328e91 100644
--- a/company-dabbrev.el
+++ b/company-dabbrev.el
@@ -41,7 +41,7 @@ See also `company-dabbrev-time-limit'."
(const :tag "Same major mode" t)
(const :tag "All" all)))
-(defcustom company-dabbrev-time-limit .5
+(defcustom company-dabbrev-time-limit .1
"Determines how many seconds `company-dabbrev' should look for matches."
:type '(choice (const :tag "Off" nil)
(number :tag "Seconds")))