Julia LSP support #362
AnuramAmarthya10
started this conversation in
Ideas
Replies: 2 comments 2 replies
-
I did not add it by default because they don't provide a single binary to run the server from, check here: julia --project=/path/to/LanguageServer.jl/environment \
-e "using LanguageServer; runserver()" \
<env_path> since the language server path is unknown I can not add a generic configuration for all users. That's basically why I haven't add it. But you can add it yourself very easily, check here. |
Beta Was this translation helpful? Give feedback.
2 replies
-
Editing the lspclient.json like this has worked for me. "servers": [
{
"command": "julia --project=C:\\Users\\Anuram\\.julia\\packages\\LanguageServer\\Fwm1f\\src\\LanguageServer.jl -e 'using LanguageServer; runserver()'",
"file_patterns": [
"*.jl$"
],
"language": "julia",
"name": "julia LanguageServer"
}
] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Julia does have Language server. If would be a great feature to have
Beta Was this translation helpful? Give feedback.
All reactions