Zac Bergquist

Results 157 comments of Zac Bergquist

The doc panel links to godoc.org (09351e0c3a69418ebaa47951e4f3457b72ab337a), so let's scope this issue just to the tooltip.

@rhcarvalho not quite - the tooltip you reference is when you hover the mouse over an identifier. This issue is asking for documentation while typing.

Going to need some help to figure this one out. Does this reproduce every time you run tests? If you reboot your computer does it take longer for the issue...

If it always happens immediately then its less likely that we're leaking file descriptors. Does it work in the terminal even when Atom is open? I'm wondering if its just...

You can disable the _Focus the go-plus panel on failure_ setting to prevent the go-plus pane from opening when something fails. The errors in the editor and the diagnostics panel...

vscode-go supports this feature using a [fork of `gotype`](https://github.com/tylerb/gotype-live). We attempted to use gotype in the past (hoping it would be a lighter-weight alternative to `go install`) and ended up...

What you're doing should work, but you'll probably have to set `GOOS=linux` as well. For the `go` tool, go-plus searches in the following order: - `$GOROOT/bin` - Atom configuration -...

Thanks for all this good info. I will try to reproduce locally as well. FYI: I would not necessarily expect `execSync('gomiports')` to work, as that's bypassing go-plus' locator.

That helps a lot. Found a few issues so far: 1. Our logic for finding the `go` tool was a little silly. We found the tool, then executed `go env`...

> As I understand it, the $GOPATH env variable should never be used on the Host, except you use $GOPATH directly in go-plus. I'm not sure what you mean here....