LanguageServer.jl
LanguageServer.jl copied to clipboard
An implementation of the Microsoft Language Server Protocol for the Julia language.
Error logs. Started using Julia 1.9 beta. Using this: https://open-vsx.org/vscode/item?itemName=julialang.language-julia-insider ``` The Language Server failed to precompile. Please make sure you have permissions to write to the LS depot path...
Hi, I think there is a bug in LanguageServer. When I open [ONNX.jl ](https://github.com/FluxML/ONNX.jl) I got this error: ``` ┌ Error: Some Julia code in the VS Code extension crashed...
Minimal example: ```julia module Bar bar() = 0 export bar end module Foo using ..Bar export bar end using .Foo # using .Bar # uncommenting gets rid of the warning...
This pull request changes the compat entry for the `TestItemDetection` package from `0.1.1` to `0.1.1, 0.2`. This keeps the compat entries for earlier versions. Note: I have not tested your...
(this is using the current master with Emacs, btw) Here's a screenshot: 
If I have: ``` test.jl ├─ test2.jl ├─ test3.jl ``` Where `test.jl` includes module defined in `test2.jl`: ```julia # test.jl module Mod include("test2.jl") include("test3.jl") end ``` ```julia # test2.jl module...
Not sure if this belongs in the SymbolServer or LanguageServer section. I periodically get freezes sending commands to the REPL, as the extension stalls on the Language Server querying for...
So, I got this when trying to `@enter` a function: ``` ERROR: InvalidStateException: Channel is closed. Stacktrace: [1] check_channel_state @ ./channels.jl:174 [inlined] [2] put! @ ./channels.jl:319 [inlined] [3] send_notification(x::VSCodeServer.JSONRPC.JSONRPCEndpoint{Base.PipeEndpoint, Base.PipeEndpoint},...
Example: A package named as 'testjl' was initialized by `PkgTemplates` with part of contents: file `testjl/src/testjl.jl`: ```julia module testjl export ff # Write your package code here. function ff() return...
Right now it seems that VSCode is unable to find function definitions in submodules. For example: `src/A.jl` ```julia module A f(x) = x end ``` `src/B.jl` ```julia module B import...