LanguageServer.jl
LanguageServer.jl copied to clipboard
An implementation of the Microsoft Language Server Protocol for the Julia language.
Currently LS can't recognize the module context of `Core.Compiler`. This might be because `Core.Compiler` is defined in a way that is really not standard (using `eval`), > https://github.com/JuliaLang/julia/blob/4c3829d413a12c2b4a87952e0f6d1ecbbff63239/base/compiler/compiler.jl#L3: ```julia getfield(Core,...
After following the directions [here](https://lsp.readthedocs.io/en/latest/#julia) all of my non-base packages are marked as missing. I think this might be because `contrib/languageserver.sh` does not pass an env_path. This probably should be...
I am using `emacs` with `lsp-julia` which uses the `LanguageServer#master`, `StaticLint#master`, and `CSTParser#master` and `julia` 1.0. When in a project where several files are used with `include`, `LanguageServer` often complains...
I have been working on the package https://github.com/JuliaMatrices/BandedMatrices.jl This package usually takes 2-3 minutes to precompile since it ships with [precompile.jl](https://github.com/JuliaMatrices/BandedMatrices.jl/blob/34d7871db2db261720e60e8a014333ab351439d0/src/precompile.jl) and it creates some issues when using LanguageServer. Details:...
So I recently heard about [Scratch.jl](https://github.com/JuliaPackaging/Scratch.jl), which provides a mutable data store for packages. I thought it would be interesting for LanguageServer.jl/SymbolServer.jl to make use of it for symserver_store_path, possibly...
Howdy folks, I'm doing some marketing activities for gitpod.io and I would like to feature the LanguageServer.jl project at an upcoming conference organised by @gitpod-io. **question:** does the project have...
Hi, I am encountering issues while working in VSCode using the package Reduce.jl. The language server indexes perfectly all the other packages but hangs on this one and really hogs...
If the language server implements [semantic highlighting](https://code.visualstudio.com/api/language-extensions/semantic-highlight-guide) there some theming advantages to semantic tokens that users and theme-makers could use, like: - Function parameter names can be highlighted differently within...
I have a feature request for the feature to rename symbols inside of comments. I feel this is an important feature for refactoring large amounts of code while preserving the...