LanguageServer.jl
LanguageServer.jl copied to clipboard
An implementation of the Microsoft Language Server Protocol for the Julia language.
This is a temporary debug test
This pull request changes the compat entry for the `JuliaWorkspaces` package from `3` to `3, 4`. This keeps the compat entries for earlier versions. Note: I have not tested your...
This pull request changes the compat entry for the `JuliaFormatter` package from `0.20.0, 0.21, 0.22, 0.23, 1` to `0.20.0, 0.21, 0.22, 0.23, 1, 2`. This keeps the compat entries for...
As discussed @davidanthoff , this outputs a warning when the duration of a request exceeds 1 second. I put the warning here instead of `request_wapper` so that the request name...
Using the latest `master` branch (https://github.com/julia-vscode/LanguageServer.jl/tree/0da181a8e48da14c2ac46519311e01352c7c6fca) I noticed that the optional `version` property of the [PublishDiagnosticsParams](https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/#publishDiagnosticsParams) is always set to `0`. As a result, the client likely rejects to update...
A function parameter's declared type is used to autocomplete that parameter throughout the function, even when a more precise inferred type is known. For example: ```julia abstract type Parent end...
Hello, Recently after I changed my Julia version to 1.10.4 to work on an older project, the language server stopped working. Here is the error I get for why the...
Whenever I run `update` to update my packages, I always get the following line ``` ◐ LanguageServer Waiting for background task / IO / timer. Interrupt to inspect ``` which...