You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 15, 2023. It is now read-only.
Currently, if user doesn't have the necessary Go tools installed, there is a pop up reminding the user to do the same when the extension performs an action that needs the Go tool.
This is not much of a problem in certain scenarios where user explicitly executes a command like
Find all references (guru)
Rename (gorename)
Add/delete tags (gomodifytags)
Generate test (gotests)
Find symbol in file (go-outline)
Find symbol in workspace (gosymbols)
Add import (gopkgs)
But simple actions like hover, typing, saving a file should not result in intrusive pop-ups.
Example below:
On hover, pop up for godef or gogetdoc based on the user preference for go.toolDocs
On save, pop up for golint or gometalinter based on the user preference for go.lintTool when go.lintOnSave is true
On save, pop up for goreturns, goimports or gofmt based on the user preference for go.formatTool when go.formatOnSave is true
Currently, if user doesn't have the necessary Go tools installed, there is a pop up reminding the user to do the same when the extension performs an action that needs the Go tool.
This is not much of a problem in certain scenarios where user explicitly executes a command like
guru)gorename)gomodifytags)gotests)go-outline)gosymbols)gopkgs)But simple actions like hover, typing, saving a file should not result in intrusive pop-ups.
Example below:
godeforgogetdocbased on the user preference forgo.toolDocsgolintorgometalinterbased on the user preference forgo.lintToolwhengo.lintOnSaveistruegoreturns,goimportsorgofmtbased on the user preference forgo.formatToolwhengo.formatOnSaveistruegocodeThis issue is to track a better user experience