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.
It would be great to have access to the output of godoc for a package (and possibly a specific identifier) within the editor without having to open up a browser to godoc.org or similar.
I'd like to take this issue on myself, but it'll be my first foray into vscode extensions out of my backend-development cave, so if somebody is keen to see this quicker, please let me know. I'd certainly be willing to hand the branch over or collaborate on the work.
The text was updated successfully, but these errors were encountered:
It would be great to have access to the output of
godoc
for a package (and possibly a specific identifier) within the editor without having to open up a browser to godoc.org or similar.Should be possible using https://code.visualstudio.com/docs/extensionAPI/vscode-api#TextDocumentContentProvider . Some care will need to be taken to handle vendored code correctly.
godoc
seems to default to looking in the$GOPATH
or$GOROOT
so we'll probably have to explicitly check$PROJECTROOT/vendor
first.I'd like to take this issue on myself, but it'll be my first foray into vscode extensions out of my backend-development cave, so if somebody is keen to see this quicker, please let me know. I'd certainly be willing to hand the branch over or collaborate on the work.
The text was updated successfully, but these errors were encountered: