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? 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
I was implementing setTrace in zls, and I noticed this. VSCode seems to always send "trace": "off" regardless of the "zig.trace.server" setting.
setTrace
"trace": "off"
"zig.trace.server"
The text was updated successfully, but these errors were encountered:
Used to work in zls-vscode and I think the reason is that the language client name matched the config name here https://github.com/ziglang/vscode-zig/blob/master/src/zls.ts#L153. Maybe changing this to zig will help? VSCode is supposed to handle this for us automatically. :/
zls-vscode
zig
Sorry, something went wrong.
zig.zls
Use zig.zls as the language client ID and rename trace setting acco…
c97caeb
…rdingly. Closes #99.
Successfully merging a pull request may close this issue.
I was implementing
setTrace
in zls, and I noticed this. VSCode seems to always send"trace": "off"
regardless of the"zig.trace.server"
setting.The text was updated successfully, but these errors were encountered: