Rafał Chłodnicki
Rafał Chłodnicki
What project are you testing this on and what do you expect the result to be? If you can provide a project and expected results then I can check in...
Please provide a simple project and state what exactly do you expect to be formatted and in what way. I don't want to create my own and potentially waste time...
I think it would be more appropriate to ask that question towards the `lspconfig` plugin? I don't know specifics of nvim/neovim configuration and its ecosystem. That said, I think (based...
Those settings only affect things that happen within `ruff-lsp` but the error you are getting happens before `ruff-lsp` is even started since we are not even able to install `ruff-lsp`...
Server sends two code actions and we apply both of them which is causing the issue. Server doesn't specify "version" for each code action which would help avoid the issue...
Fixing in LSP. I believe I've mentioned this issue in at least two places so not sure now if there is some more relevant issue for tracking or whether we...
Was fixed upstream.
I haven't checked this locally but it looks like the upstream issue: https://github.com/sublimehq/sublime_text/issues/817 It's also referenced in our list of blocking upstream issues: https://github.com/sublimelsp/LSP/issues/2007
That's not possible. There is one instance of server per workspace folder and each instance is limited to single version of Typescript. The only workaround I can think of is...
Whether those completions are provided depends on client announcing support for clangd's custom `textDocument.completion.editsNearCursor` capability. Per [previously referenced change](https://reviews.llvm.org/D75739), for VSCode they combine it with some custom completions handler to...