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);
|
fTxtSyn.Assign(TxtSyn);
|
||||||
//
|
//
|
||||||
fDDocDelay:=200;
|
fDDocDelay:=200;
|
||||||
fAutoDotDelay:=20;
|
fAutoDotDelay:=100;
|
||||||
fCurrLineAttribs := TSynSelectedColor.Create;
|
fCurrLineAttribs := TSynSelectedColor.Create;
|
||||||
fSelAttribs := TSynSelectedColor.Create;
|
fSelAttribs := TSynSelectedColor.Create;
|
||||||
fFoldedColor := TSynSelectedColor.Create;
|
fFoldedColor := TSynSelectedColor.Create;
|
||||||
|
|
|
@ -923,7 +923,7 @@ begin
|
||||||
fDDocTimer.Interval := fDDocDelay;
|
fDDocTimer.Interval := fDDocDelay;
|
||||||
fDDocTimer.OnTimer := @DDocTimerEvent;
|
fDDocTimer.OnTimer := @DDocTimerEvent;
|
||||||
|
|
||||||
fAutoDotDelay := 20;
|
fAutoDotDelay := 100;
|
||||||
fAutoDotTimer := TIdleTimer.Create(self);
|
fAutoDotTimer := TIdleTimer.Create(self);
|
||||||
fAutoDotTimer.AutoEnabled:=true;
|
fAutoDotTimer.AutoEnabled:=true;
|
||||||
fAutoDotTimer.Interval := fAutoDotDelay;
|
fAutoDotTimer.Interval := fAutoDotDelay;
|
||||||
|
|
Loading…
Reference in New Issue