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
Feature Request:
Certain go package management systems such as dep or glide have a vendor directory in the project repo which will contain the dependencies relevant to a project.
In order to address this vscode-go bug , gopkgs should be able to list the contents of the local vendor directory, if it exists.
User Story
As a user of vscode
I would like my vendor dependencies to be listed as available imports
when I run gopkgs in a repo with a vendor folder
dependencies in the vendor folder should be included in the listed output.
The text was updated successfully, but these errors were encountered:
My repo with a vendor directory is stored by symlink in my gopath, and yeah, following symlinks with golang is tricky. That is likely why gopkgs can't find my vendor'd resources then 🤔
but if I cd into my repo (not through the symlink in my gopath), I can't seem to use gopkgs -workDir={"echo pwd"} to tell it to look there for my working dir. Maybe I'm getting the syntax wrong on the -workDir parameter?
Feature Request:
Certain go package management systems such as dep or glide have a
vendor
directory in the project repo which will contain the dependencies relevant to a project.In order to address this vscode-go bug , gopkgs should be able to list the contents of the local
vendor
directory, if it exists.User Story
The text was updated successfully, but these errors were encountered: