nsf
nsf
Well, in this case autobuild should be disabled by default. You need to find the gocode binary and exec it via cmd.exe or something. `gocode set` will print the gocode...
Vscode plugin might invoke "set" command and set it to true. Find a way to force it to false. Plugin should be open source. `gocode set autobuild false` will set...
I think the feature invokes the go tool. So if you have some unconventional setup or something it might fail. Also I believe go tool uses modification timestamps to rebuild...
`go build` should not be used most of the time. Gocode's autobuild feature runs `go install`. `go build` is useless because it's a blank build, it does nothing. `go install`...
Gocode uses compiled packages as a source of semantical info for imported packages. If you've added City field and didn't compile your "pb" package, gocode won't see the change.
I need reproducable test case for this. Typical gocode autocompletion time on fmt. is around 0.03s (30ms). Half a second is a very long time. Perhaps it's due to `autobuild`...
Lol, what python has to do with gocode?
All I can say is that I don't use autobuild feature and honestly not sure how it works. And while it's not nice for me to not know how part...
And I will repeat here what I said in the pull request. If `lib-path` is set, autobuild shouldn't work, because `lib-path` is a hack, that says - ignore all Go...
IIRC gocode doesn't even look at these build tags, it just loads all source files and tries to populate the same scope with entities from all of the files. So...