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 has been 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
On typing, pop up for gocode
This issue is to track a better user experience
The text was updated successfully, but these errors were encountered:
In the latest update (0.6.63) to the Go extension, below are the improvements made
Prompts will only show up for tools that are used for features that are explicitly executed by the user. Eg: Rename, Generate Unit Tests, Modify tags. And not for features that get triggered behind the scenes like linting, hover or format on save.
When the prompts do show up, closing them will ensure that they wont show up for the duration of the current session of VS Code.
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:
godef
orgogetdoc
based on the user preference forgo.toolDocs
golint
orgometalinter
based on the user preference forgo.lintTool
whengo.lintOnSave
istrue
goreturns
,goimports
orgofmt
based on the user preference forgo.formatTool
whengo.formatOnSave
istrue
gocode
This issue is to track a better user experience
The text was updated successfully, but these errors were encountered: