mirror of https://gitlab.com/basile.b/dexed.git
set default "auto dot delay" to 100ms to prevent unwanted insertion of properties
e.g "a[b.alignof" when "a[.." is tried
This commit is contained in:
parent
468d51b66a
commit
64ed15f50c
|
@ -209,7 +209,7 @@ begin
|
|||
fTxtSyn.Assign(TxtSyn);
|
||||
//
|
||||
fDDocDelay:=200;
|
||||
fAutoDotDelay:=20;
|
||||
fAutoDotDelay:=100;
|
||||
fCurrLineAttribs := TSynSelectedColor.Create;
|
||||
fSelAttribs := TSynSelectedColor.Create;
|
||||
fFoldedColor := TSynSelectedColor.Create;
|
||||
|
|
|
@ -923,7 +923,7 @@ begin
|
|||
fDDocTimer.Interval := fDDocDelay;
|
||||
fDDocTimer.OnTimer := @DDocTimerEvent;
|
||||
|
||||
fAutoDotDelay := 20;
|
||||
fAutoDotDelay := 100;
|
||||
fAutoDotTimer := TIdleTimer.Create(self);
|
||||
fAutoDotTimer.AutoEnabled:=true;
|
||||
fAutoDotTimer.Interval := fAutoDotDelay;
|
||||
|
|
Loading…
Reference in New Issue