aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/julials.lua
diff options
context:
space:
mode:
authorDale Muccignat <dale.muccignat@my.jcu.edu.au>2025-10-25 00:33:53 +1100
committerGitHub <noreply@github.com>2025-10-24 06:33:53 -0700
commit3ddd55ac5eed414945ef51c5a65220996826f316 (patch)
tree588e9f09f5d83c80a79ef29a1e8ffa902e84823f /lsp/julials.lua
parentdocs: update configs.md (diff)
downloadnvim-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/julials.lua')
-rw-r--r--lsp/julials.lua8
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