mirror of https://github.com/buggins/dlangide.git
Fix autocomplete
This commit is contained in:
parent
c566de2633
commit
b511e32ca3
2
dub.json
2
dub.json
|
@ -12,7 +12,7 @@
|
|||
"stringImportPaths": ["views"],
|
||||
|
||||
"dependencies": {
|
||||
"dlangui": "==0.9.182",
|
||||
"dlangui": { "path": "../dlangui"},
|
||||
"dsymbol": "~>0.4.8",
|
||||
"dcd": "~>0.9.13"
|
||||
},
|
||||
|
|
|
@ -322,7 +322,7 @@ class DCDInterface : Thread {
|
|||
if (i < response.completionKinds.length)
|
||||
type = response.completionKinds[i];
|
||||
result.output[i].kind = type;
|
||||
result.output[i].name = to!dstring(s);
|
||||
result.output[i].name = to!dstring(s.identifier);
|
||||
i++;
|
||||
}
|
||||
if (response.completionType == "calltips") {
|
||||
|
|
Loading…
Reference in New Issue