-
Notifications
You must be signed in to change notification settings - Fork 17.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
x/tools/gopls: defining the workspace root #36899
Comments
Thanks for documenting this @stamblerre. In module mode, specifically:
Can you expand on the motivation behind limiting the scope to the subdirectory tree? My intuition was that the scope would have been the entire module, just as running |
@myitcv: We are still considering the path forward here. For now, this is the current state, but it's possible that we may change it to be module-scoped in the future. |
Would you consider an implementation in $GOPATH mode that allows one to set the scope when opening gopls - perhaps as a configuration or startup flag option? I frequently jump to a given code location before opening my editor; it's inconvenient to need to open my $GOPATH root (or a sufficiently "high" parent directory) in order to find all the references. For example, I have a $GOPATH of Any time I'm within |
@joeblubaugh: Yes, that is our eventual goal for GOPATH mode - I think a scope configuration is probably what we'll go with. I'll post more information here once we have more details planned out. |
I'm sorry, it's not totally clear from the write-up.
Is this a design limitation, or just not currently implemented? Using VS Code (and having spent an afternoon suffering from golang/vscode-go#250 (comment)) it'd be good to understand if this is a temporary limitation, or if I will need to permanently change workflows. golang/vscode-go#226 (comment) is what brought me here. Or perhaps I'm misunderstanding, or this is really a feature vscode-go should implement, not gopls. Perhaps vscode-go it should be starting gopls in the correct directory for my currently-open file/package, so gopls sees the supported case of "go.mod in |
This is something we are working on improving for future versions of |
One use case we haven't considered yet is directories that contain multiple Go files, each for a different command. Right now, |
For vscode I have a workaround, do not know if this work for other editors. My directory structure is:
opening "Somepoject1" in vscode causes a problem.
If i start working on a project I open the respective directory in "Workspace"s in vscode. There I add al the microservice directories from the corresponding project directory in "Projects" to the workspace. it's a little bit of work to setup but it works. no errors any more |
goland support this feature. vscode how config? @stamblerre , work fine. thanks! {
"gopls": {
"buildFlags": ["-tags=wireinject"],
"experimentalWorkspaceModule": true
},
} |
You can use VS Code's File -> Add Folder to Workspace to add multiple modules to your project. |
…dem across different environments golang/go#36899 , similar error
I use vscode remote ssh remote workspace path: /home/wenzhenglin/gocode/src/example.com.com/naas go.mod: This issue if it's relate, that makes vscode almost non-functional, only to disable the format, almlost every time I save a file (it just waiting long time and still fail to format, a few time works though) I'm using Kubernetes's apiserver-builder-alpha to generate codes, it forced to create project under GOPATH. that's bad, I can't easily to change the project path to outside GOPATH. // updated my test case // updated link |
@chinglinwen: It's fine to keep your project in your |
@stamblerre yep, issue #236 is more alike for my case. Sorry that vscode just confused me, and I don't know what's the real problem.
I don't open src folder, but open src/example.com/naas, the folder under it, so I don't know why you think so. One of problem is that it sometimes works and sometimes not, I don't have correct clue what's causing the problem. ( the log doesn't say much for me to get the clue ) . |
Did any of the suggestions on golang/vscode-go#236 help with the problem? |
Change https://golang.org/cl/283513 mentions this issue: |
@stamblerre The problem is I can't easy re-produce and verify, so it sometimes works okay, sometimes not.
However I try with extreme case that full of undefined names ( and no such import etc), in that way, it will show the saving box ( about 10 seconds I guess ), and got three times vscode disconnect(auto reconnect though). case:
try save and close etc version
vscode setting here if relate |
I'm seeing the following error messages in your logs:
This may indicate an issue. In any case, it will be easier to investigate on a dedicated issue, and it sounds like there may be some issues with VS Code here too. Do you mind filing a new issue with this information here? |
Change https://golang.org/cl/284795 mentions this issue: |
…h.0.6 fe37c9e all: replace all usages of os/exec with golang.org/x/sys/execabs a46736d internal/lsp/source: handle possible nil pointer in rename check e0d2015 gopls/doc: rewrite troubleshooting.md d78b04b gopls/doc: clean up and slightly reorganize documentation 1bdb73f gopls/doc: move contents of golang/go#36899 to documentation f964368 gopls/internal/regtest: fix synchronization for TestUseGoplsMod 8b4aab6 gopls/doc/vscode.md: update vscode setting example Change-Id: Iec71457cdff70ef15b77cf4193a0006f5ca47c01
* all: replace all usages of os/exec with golang.org/x/sys/execabs fe37c9e1 * internal/lsp/source: handle possible nil pointer in rename check a46736d9 * gopls/doc: rewrite troubleshooting.md e0d20156 * gopls/doc: clean up and slightly reorganize documentation d78b04bd * gopls/doc: move contents of golang/go#36899 to documentation 1bdb73f5 * gopls/internal/regtest: fix synchronization for TestUseGoplsMod f9643685 * gopls/doc/vscode.md: update vscode setting example 8b4aab62 * gopls/internal/regtest: avoid flake in TestGoModInvalidesOnSave 9a6582cd * internal/lsp/cache: compare file size when invalidating file cache f618651c * internal/lsp/fake: use hash rather than mtime to identify workdir files 7646fae9 * internal/lsp/source: rename uses of embedded fields 45115c1c * go/packages: don't crash if given an invalid overlay 1e6ecd4b * internal/imports: handle un-downloaded modules 88ba5d0b * copyright: test that all files in the repo have copyright notices d33bae44 * gopls/doc/emacs.md: describe configuration for eglot 1b1bb645 * internal/lsp/cmd: add licenses command 7905ceac * gopls/internal/hooks: create included licenses text 9c811dba * gopls/internal/regtest: fix TestUnimportedCompletions 1462c254 * gopls: use standard command doc comment format e1c06e46 * Revert "go/analysis/passes/structtag: recognize multiple keys per tag" 21398c4d * internal/lsp/cache: fix panic in GOPATH mode 5bd8423e * internal/lsp/cache: fix module paths in nested module error messages 6f6e4b65 * gopls/internal/regtest: skip regtests on android-amd64-emu 7de0487e * all: add copyright notices to files that are missing them 92778473 * go/packages: remove -mod, -modfile flags from build flags for go version 5d655790 * internal/lsp/source: return all field funcs from outgoing callhierarchy b8e0803c * gopls: update link to nvim-lspconfig gopls configuration 6c3993fd * gopls/doc: add additional information on CI in contributing.md 66568f37 * gopls: bump gofumpt to v0.1.0 961d08dc * gopls/internal/regtest: support multiple workspace folders 2e889ff4 * cmd/goyacc: double ACTSIZE, NSTATE and TEMPSTATE eb9b40eb * internal/lsp: avoid panic during interface assertion 2993f551 * go/analysis/passes/fieldalignment: add command c4dccaf3 * internal/lsp: save all possible keys for analyses, codelenses 9ca8607e * internal/lsp: restructure user options (CL 278433 continued) d2d86cca
* all: replace all usages of os/exec with golang.org/x/sys/execabs fe37c9e1 * internal/lsp/source: handle possible nil pointer in rename check a46736d9 * gopls/doc: rewrite troubleshooting.md e0d20156 * gopls/doc: clean up and slightly reorganize documentation d78b04bd * gopls/doc: move contents of golang/go#36899 to documentation 1bdb73f5 * gopls/internal/regtest: fix synchronization for TestUseGoplsMod f9643685 * gopls/doc/vscode.md: update vscode setting example 8b4aab62 * gopls/internal/regtest: avoid flake in TestGoModInvalidesOnSave 9a6582cd * internal/lsp/cache: compare file size when invalidating file cache f618651c * internal/lsp/fake: use hash rather than mtime to identify workdir files 7646fae9 * internal/lsp/source: rename uses of embedded fields 45115c1c * go/packages: don't crash if given an invalid overlay 1e6ecd4b * internal/imports: handle un-downloaded modules 88ba5d0b * copyright: test that all files in the repo have copyright notices d33bae44 * gopls/doc/emacs.md: describe configuration for eglot 1b1bb645 * internal/lsp/cmd: add licenses command 7905ceac * gopls/internal/hooks: create included licenses text 9c811dba * gopls/internal/regtest: fix TestUnimportedCompletions 1462c254 * gopls: use standard command doc comment format e1c06e46 * Revert "go/analysis/passes/structtag: recognize multiple keys per tag" 21398c4d * internal/lsp/cache: fix panic in GOPATH mode 5bd8423e * internal/lsp/cache: fix module paths in nested module error messages 6f6e4b65 * gopls/internal/regtest: skip regtests on android-amd64-emu 7de0487e * all: add copyright notices to files that are missing them 92778473 * go/packages: remove -mod, -modfile flags from build flags for go version 5d655790 * internal/lsp/source: return all field funcs from outgoing callhierarchy b8e0803c * gopls: update link to nvim-lspconfig gopls configuration 6c3993fd * gopls/doc: add additional information on CI in contributing.md 66568f37 * gopls: bump gofumpt to v0.1.0 961d08dc * gopls/internal/regtest: support multiple workspace folders 2e889ff4 * cmd/goyacc: double ACTSIZE, NSTATE and TEMPSTATE eb9b40eb * internal/lsp: avoid panic during interface assertion 2993f551 * go/analysis/passes/fieldalignment: add command c4dccaf3 * internal/lsp: save all possible keys for analyses, codelenses 9ca8607e * internal/lsp: restructure user options (CL 278433 continued) d2d86cca
can anyone explain if this fixes the issue and if so where should I add this json object? |
It goes in your VSCode settings.json (or folder- or workspace-specific settings). See the documentation for details. |
gopls
supports both module and GOPATH modes. However, we need to define a scope in which language features like references, rename, and implementation should operate. The following is subject to, and will likely, change.For now, we have the following cases:
Module mode
Supported
go.mod
file). The scope is the entire module.Unsupported
gopls
will not work in this case.GOPATH mode
Supported
At your own risk
GOPATH
. Note that this will causegopls
to load your entire GOPATH. If your GOPATH is large, this will take a long time and causegopls
to be very slow.To work around this case, you can create a new GOPATH that contains only the packages you want to work on.
Unsupported
gopls
to treat your entire GOPATH as the workspace scope. It will be very slow to start because it will try to find all of the Go files in the directory you have opened. It will then load all of the files it has found.We are working on addressing all of these cases and improving the behavior of
gopls
in the unsupported cases. All of these cases will be supported oncegopls
reachesv1.0.0
.We understand it may be inconvenient to change your typical workflow to accommodate frequent changes in
gopls
. In this case, it may be easier to stick with a version ofgopls
that works for you (gopls/v0.2.2
, for instance), or if you are using GOPATH,gopls
may not be the best tool to use until it reachesv1.0.0
.If you have additional use cases that are not mentioned above, please comment below.
The text was updated successfully, but these errors were encountered: