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'm using deno lsp with minimal configuration in Helix 23.05 as follows:
deno lsp
[[language]] name = "typescript" language-server = { command = "deno", args = ["lsp"] } config = { enable = true }
With Deno 1.36.0, everything worked fine. I got the following output:
"Starting Deno language server...\n" " version: 1.36.0 (release, x86_64-unknown-linux-gnu)\n" " executable: /usr/local/bin/deno\n" "Connected to \"helix\" 23.05 (7f5940be)\n" "Server ready.\n" "Error converting specifier settings (file://...): Error converting specifier settings: invalid type: null, expected struct SpecifierSettings\n" "failed to update settings: invalid type: null, expected struct WorkspaceSettings\n"
With Deno 1.37.1 and 1.37.2, nothing works (i.e., no completion, no diagnostics, no commands) and I'm getting the following output:
"Starting Deno language server...\n" " version: 1.37.2 (release, x86_64-unknown-linux-gnu)\n" " executable: /usr/local/bin/deno\n" "Connected to \"helix\" 23.05 (7f5940be)\n" "Server ready.\n" "Error converting specifier settings (file://...): Error converting specifier settings: invalid type: null, expected struct SpecifierSettings\n"
Might be related to the fix in #14455?
The text was updated successfully, but these errors were encountered:
That config used to be accepted by deno somehow even if its not correct, seems like its a hard error now
The correct config is config = { deno = { enable = true } }
config = { deno = { enable = true } }
Sorry, something went wrong.
@lluchs Please comment if the above config doesn't work for you
No branches or pull requests
I'm using
deno lsp
with minimal configuration in Helix 23.05 as follows:With Deno 1.36.0, everything worked fine. I got the following output:
With Deno 1.37.1 and 1.37.2, nothing works (i.e., no completion, no diagnostics, no commands) and I'm getting the following output:
Might be related to the fix in #14455?
The text was updated successfully, but these errors were encountered: