diff options
| author | Dale Muccignat <dale.muccignat@my.jcu.edu.au> | 2025-10-25 00:33:53 +1100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-24 06:33:53 -0700 |
| commit | 3ddd55ac5eed414945ef51c5a65220996826f316 (patch) | |
| tree | 588e9f09f5d83c80a79ef29a1e8ffa902e84823f /lsp | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-3ddd55ac5eed414945ef51c5a65220996826f316.tar nvim-lspconfig-3ddd55ac5eed414945ef51c5a65220996826f316.tar.gz nvim-lspconfig-3ddd55ac5eed414945ef51c5a65220996826f316.tar.bz2 nvim-lspconfig-3ddd55ac5eed414945ef51c5a65220996826f316.tar.lz nvim-lspconfig-3ddd55ac5eed414945ef51c5a65220996826f316.tar.xz nvim-lspconfig-3ddd55ac5eed414945ef51c5a65220996826f316.tar.zst nvim-lspconfig-3ddd55ac5eed414945ef51c5a65220996826f316.zip | |
fix(julials): accomodate julia 1.12 #4148
According to https://github.com/julia-vscode/LanguageServer.jl/issues/1366
, we need SymbolServer and StaticLint on the latest commits.
Diffstat (limited to 'lsp')
| -rw-r--r-- | lsp/julials.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lsp/julials.lua b/lsp/julials.lua index 949a7e83..1500c53d 100644 --- a/lsp/julials.lua +++ b/lsp/julials.lua @@ -2,12 +2,12 @@ --- --- https://github.com/julia-vscode/julia-vscode --- ---- LanguageServer.jl can be installed with `julia` and `Pkg`: +--- LanguageServer.jl, SymbolServer.jl and StaticLint.jl can be installed with `julia` and `Pkg`: --- ```sh ---- julia --project=~/.julia/environments/nvim-lspconfig -e 'using Pkg; Pkg.add("LanguageServer")' +--- julia --project=~/.julia/environments/nvim-lspconfig -e 'using Pkg; Pkg.add("LanguageServer#main"); Pkg.add("SymbolServer#master"); Pkg.add("StaticLint#master")' --- ``` --- where `~/.julia/environments/nvim-lspconfig` is the location where ---- the default configuration expects LanguageServer.jl to be installed. +--- the default configuration expects LanguageServer.jl, SymbolServer.jl and StaticLint.jl to be installed. --- --- To update an existing install, use the following command: --- ```sh @@ -89,7 +89,7 @@ local cmd = { "environments", "nvim-lspconfig" ) pushfirst!(LOAD_PATH, ls_install_path) - using LanguageServer + using LanguageServer, SymbolServer, StaticLint popfirst!(LOAD_PATH) depot_path = get(ENV, "JULIA_DEPOT_PATH", "") project_path = let |
