]> code.delx.au - gnu-emacs-elpa/commitdiff
Lower dabbrev time limits
authorDmitry Gutov <dgutov@yandex.ru>
Thu, 30 Jan 2014 06:18:41 +0000 (08:18 +0200)
committerDmitry Gutov <dgutov@yandex.ru>
Thu, 30 Jan 2014 06:18:41 +0000 (08:18 +0200)
Computers are faster now; I prefer things to be snappier

company-dabbrev-code.el
company-dabbrev.el

index 408d2b25b150bb772432fa4a681c1f6762f11ba5..ff47390dec97fc68ec5e5745f722b5609770bdd8 100644 (file)
@@ -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")))
index afe60f2a957c2cced6d062f4b6948548edcd9545..6328e91a56f3c681bfc94805899d0032f33bdd2a 100644 (file)
@@ -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")))