-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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: no completion/suggestion/linting working on large projects #66787
Comments
I got it worked again by removing |
Hmm. In your RPC logs, I see VS Code shutting down your LSP session, with about a second of initialization. Is that expected? Did you close the session very quickly? |
@findleyr No, I did wait a good 30 seconds after opening vscode. Could it be an issue due to |
@didrocks in your logs, I see the LSP client sending a shutdown message to gopls 1s after it is started. Specifically, these trace logs:
It looks like gopls crashed on its first startup (but I don't see a stack). However, the second time, it didn't crash. |
@didrocks did you by any chance reinstall gopls during this process? Does your project have |
@findley: maybe that’s the run log after I removed Yes, the project has |
I believe this may be related to ##67289. |
What version of Go, VS Code & VS Code Go extension are you using?
Version Information
Run
go version
to get version of Go from the VS Code integrated terminal.go version go1.22.1 linux/amd64
Run
gopls -v version
to get version of Gopls from the VS Code integrated terminal.code -v
orcode-insiders -v
to get version of VS Code or VS Code Insiders.Check your installed extensions to get the version of the VS Code Go extension
v0.41.2
Run Ctrl+Shift+P (Cmd+Shift+P on Mac OS) >
Go: Locate Configured Go Tools
command.Share the Go related settings you have added/edited
I did reset all go related settings in the editor after noticing first the first time completion
/suggestion/autoimport didn’t work. The remaining settings left (for those debug traces) are:
Note that I also tried adding
semantictokens
, but this didn’t improve anything.Describe the bug
On a large project (hello world completion works on the same machine), gopls/vscode extension stops suggesting anything. One of those is for instance https://github.com/ubuntu/authd, but it’s not limited to it on my setup.
In the following reproducible step, I’m trying to request completion from an App struct instance to get its field. This is the same for anything else (methods or functions completion), refactoring, auto importing…
Note that the project is successfully building. If I run
go build ./cmd/authd/
, there is no error and the binary is produced.I also tried to remove the gopls and go entire cache in my HOME directory, and having gopls rebuilt (then, with the default go version on the system, which is 1.21.3, which is autoupdate to 1.22.1 inside this project)
Steps to reproduce the behavior:
we have the surroundings lines:
Log recording start with the cursor after the last line
2. Type carriage return, then
a.
3. See that nothing is proposed, no field or methods of a.
The logs starting when I type a return carriage, then
a.
on line 49 (which is anApp
instance), expecting completion:Additional logs
Please find attached additional logs when opening the project.
open-project-traces.txt
The text was updated successfully, but these errors were encountered: