Hi, mostly out of interest I wanted to set-up a Julia LS in Sublime-Text version 4.4121-1 running on Manjaro with kernel version 5.14.18-1 and I must say I found the installation guide very lacking.
I had to do a bit of googling to figure out that i first need to run
julia> import Pkg;
julia> Pkg.add("LanguageServer")
julia> Pkg.add("SymbolServer")
as described in LSP docs.
And after installing LSP-julia I have to modify the "command" setting in LSP-julia.sublime-settings to
"command": ["bash", "/LANGUAGE_SERVER_PATH/contrib/languageserver.sh"],
Where the path can be found by running
julia> using LanguageServer
julia> pathof(LanguageServer)
"/LANGUAGE_SERVER_PATH/src/LanguageServer.jl"
I suggest that some of these steps should be added to the "README".
Hi, mostly out of interest I wanted to set-up a Julia LS in Sublime-Text version 4.4121-1 running on Manjaro with kernel version 5.14.18-1 and I must say I found the installation guide very lacking.
I had to do a bit of googling to figure out that i first need to run
as described in LSP docs.
And after installing LSP-julia I have to modify the "command" setting in
LSP-julia.sublime-settingstoWhere the path can be found by running
I suggest that some of these steps should be added to the "README".