mirror of https://gitlab.com/basile.b/dexed.git
fix #89 - improve algo complexity of computing "text" completions
This commit is contained in:
parent
3df1a3b720
commit
31080c18f7
|
@ -2884,7 +2884,9 @@ var
|
||||||
i: integer;
|
i: integer;
|
||||||
o: TObject;
|
o: TObject;
|
||||||
s: string;
|
s: string;
|
||||||
|
w: string;
|
||||||
r: TStringRange = (ptr:nil; pos:0; len: 0);
|
r: TStringRange = (ptr:nil; pos:0; len: 0);
|
||||||
|
h: TStringHashSet;
|
||||||
const
|
const
|
||||||
c: TSysCharSet = ['A'..'Z', 'a'..'z', '_'];
|
c: TSysCharSet = ['A'..'Z', 'a'..'z', '_'];
|
||||||
begin
|
begin
|
||||||
|
@ -2910,13 +2912,21 @@ begin
|
||||||
|
|
||||||
if fTextCompletion then
|
if fTextCompletion then
|
||||||
begin
|
begin
|
||||||
r := TStringRange.create(lines.Text);
|
h := TStringHashSet.create();
|
||||||
while not r.empty do
|
for i := 0 to lines.Count-1 do
|
||||||
begin
|
begin
|
||||||
s := r.popUntil(c)^.takeWhile(c).yield;
|
r := TStringRange.create(lines[i]);
|
||||||
if (s.length > fTextCompletionMinLength) and fCompletion.ItemList.IndexOfName(s).equals(-1) then
|
while not r.empty do
|
||||||
fCompletion.ItemList.AddObject(s, TObject(PtrUint(dckText)));
|
begin
|
||||||
|
w := r.popUntil(c)^.takeWhile(c).yield;
|
||||||
|
if (w.length > fTextCompletionMinLength) and not h.contains(w) then
|
||||||
|
begin
|
||||||
|
h.insert(w);
|
||||||
|
fCompletion.ItemList.AddObject(w, TObject(PtrUint(dckText)));
|
||||||
|
end;
|
||||||
|
end;
|
||||||
end;
|
end;
|
||||||
|
h.Free;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Reference in New Issue