We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The language server middleware injects a follow up command for each completion item which triggers parameter hint if editor.parameterHints is set.
editor.parameterHints
vscode-go/src/language/goLanguageServer.ts
Line 659 in 4316a96
This is not a boolean setting (the bug was introduced in https://go-review.googlesource.com/c/vscode-go/+/382234 sorry). As a result, this is always truthy. We should use editor.parameterHints.enabled instead.
editor.parameterHints.enabled
The text was updated successfully, but these errors were encountered:
Change https://go.dev/cl/546155 mentions this issue: src/language/goLanguageServer: fix parameter hint setting query
src/language/goLanguageServer: fix parameter hint setting query
Sorry, something went wrong.
308c6c0
No branches or pull requests
The language server middleware injects a follow up command for each completion item which triggers parameter hint if
editor.parameterHints
is set.vscode-go/src/language/goLanguageServer.ts
Line 659 in 4316a96
This is not a boolean setting (the bug was introduced in https://go-review.googlesource.com/c/vscode-go/+/382234 sorry). As a result, this is always truthy.
We should use
editor.parameterHints.enabled
instead.The text was updated successfully, but these errors were encountered: