-
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: gopls does not reset workspace/configuration if missing from the client #71227
Comments
I agree this is a bug, but perhaps not one that is easy to fix. The problem is that on didChangeConfiguration notifications, gopls makes a workspace/configuration request to the client with a specific scope URI set to the workspace folder. IIUC, the VS Code client will respond with the workspace settings.json. Has that response already merged user settings.json? Or was user settings.json sent as the initializationOptions? If the former, we should always clobber the existing options with defaults, and then apply the result of workspace/configuration. If the latter, we need to keep a copy of the original initializationOptions that can be overlaid with workspace options. Also: in our In summary: something we're doing is certainly wrong, but any change to our current behavior is liable to be complicated, and break some existing users. Therefore, we are unlikely to be able to solve this problem soon. |
I have no idea if this is related, but in my VSCode settings when I set
|
It could be related to #71964 issue. Could you try upgrading your gopls to v0.18.1, we fixed it in v0.18.1. If you verify the v0.18.1 fix the issue, you can remove the What you mentioned might not related to this issue. Explicitly setting make sure gopls will always honor your configuration. But if you comment it out or delete it from your configuration, gopls might not aware of your change. |
@h9jiang Confirmed I have v0.18.1 but I'm still having the issue. If you're saying that |
I'm sorry, What I meant is I made another mistake on this. #71964 issue will be fixed in gopls v0.18.2. But gopls v0.18.2 is not released yet. The milestone for v0.18.2 is here. Until that is released, I think you might have to keep using I'm so sorry for this confusion. How could I make two mistakes at the same time. :( |
gopls version
master head, following experiment is based on commit
6efe0f4b404b25e02999c3e34db08771f855fc28
go env
What did you do?
Locate semantic token information from gopls of a string or a number. Toggle feature
noSemanticString
ornoSemanticNumber
.What did you see happen?
By default, number's token info is returned from the gopls, you can see
semantic token type = number
.Then if I set
"ui.noSemanticNumber": true,
the semantic token info goes away. WAIIf I set the
"ui.noSemanticNumber": false,
, the semantic token info comes back. WAISet it to
"ui.noSemanticNumber": true,
, the token info goes away. WAI. Then if I comment this out. What I expect is, the semantic token information will come back. Because, no setting means default value"ui.noSemanticNumber": false,
.What did you expect to see?
As a result it does not come back.
Editor and settings
No response
Logs
I will focus on the last two
workspace/configuration
logsWhere I set it to true
Where I comment it out
I think what happened is, when gopls saw
"ui.noSemanticNumber": X,
in the json, gopls will apply thisX
in memory. WAI.But when gopls saw
"ui.noSemanticNumber": X,
is missing in the json, gopls do nothing. In this case, gopls should set theui.noSemanticNumber = false
because false is the default value.@findleyr
The text was updated successfully, but these errors were encountered: