diff --git a/dub.json b/dub.json index d92e674..225a376 100644 --- a/dub.json +++ b/dub.json @@ -12,7 +12,7 @@ "stringImportPaths": ["views"], "dependencies": { - "dlangui": "==0.9.182", + "dlangui": { "path": "../dlangui"}, "dsymbol": "~>0.4.8", "dcd": "~>0.9.13" }, @@ -30,19 +30,19 @@ "configurations" : [ { "name" : "default" - }, + }, { "name" : "minimal", "subConfigurations" : { "dlangui" : "minimal" } - }, + }, { "name" : "console", "subConfigurations" : { "dlangui" : "console" } - }, + }, { "name" : "x11", "subConfigurations" : { diff --git a/src/dlangide/tools/d/dcdinterface.d b/src/dlangide/tools/d/dcdinterface.d index 8f6677d..cf2f3ca 100644 --- a/src/dlangide/tools/d/dcdinterface.d +++ b/src/dlangide/tools/d/dcdinterface.d @@ -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") {