mirror of https://gitlab.com/basile.b/dexed.git
dcd integration: fixed identifier completion (without dot)
This commit is contained in:
parent
aa35683cf9
commit
83b568904c
|
@ -88,10 +88,10 @@ end;
|
|||
|
||||
procedure getCompletion(const aFilename: string; aPosition: Integer; const list: TStrings);
|
||||
var
|
||||
i: NativeInt;
|
||||
i, j: NativeInt;
|
||||
kind: Char;
|
||||
item: string;
|
||||
asComp: boolean;
|
||||
asComp, asTips: boolean;
|
||||
begin
|
||||
if not dcdOn then exit;
|
||||
lazyServerStart;
|
||||
|
@ -106,10 +106,12 @@ begin
|
|||
if lines.Count = 0 then
|
||||
exit;
|
||||
asComp := lines.Strings[0] = 'identifiers';
|
||||
if not asComp then
|
||||
asTips := lines.Strings[0] = 'calltips';
|
||||
if asTips then
|
||||
exit;
|
||||
if asComp then j := 1 else j := 0;
|
||||
list.Clear;
|
||||
for i := 1 to lines.Count-1 do
|
||||
for i := j to lines.Count-1 do
|
||||
begin
|
||||
item := lines.Strings[i];
|
||||
kind := item[length(item)];
|
||||
|
|
|
@ -341,6 +341,7 @@ begin
|
|||
fDoc.Lines.SaveToStream(str);
|
||||
str.SaveToFile(fname);
|
||||
srcpos := fDoc.SelStart;
|
||||
if srcpos > 0 then srcpos -= -1;
|
||||
completion.ItemList.Clear;
|
||||
ce_dcd.getCompletion(fname, srcpos, completion.ItemList);
|
||||
finally
|
||||
|
|
Loading…
Reference in New Issue