EditPythonScript AutoComplete bug

Hi @clement,

What I meant was that the line starting wih “clr” needs to stand on it’s own and not depend on values defined in other lines. So auto completion doesn’t work after

path = r"C:\Test.dll"
clr.AddReferenceToFileAndPath(path)

no matter where path is defined. Instead it needs to be all on one line:

clr.AddReferenceToFileAndPath(r"C:\Test.dll")

That’s how it works now.

In the future we want to integrate with an existing language server so you’ll get the same auto complete as vscode for example. If a problem has an acceptable work around, affects very few people, and isn’t a trivial fix then it will have a lower priority but of course otherwise we want to fix it.

I hope that makes sense.

2 Likes