-
Notifications
You must be signed in to change notification settings - Fork 215
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature request] Julialang support #354
Comments
Add new LSP server into lsp-bridge is pretty easy, please read https://github.com/manateelazycat/lsp-bridge#add-support-for-new-language You just need steal json setting from VSCode, then send a PR. ;) |
I didn't find the exact file to steal configs from. {
"name": "typescript",
"languageId": "TypeScript",
"command": [
"typescript-language-server",
"--stdio"
],
"settings": {}
} and found little configurations. Maybe "command" is the most useful?
, and still didn't find anything like the configs in lsp-bridge/langserver/typescript.json |
According to the README of LanguageServer.jl, I added a julia.json file on the lanserver folder {
"name": "julials",
"languageId": "julia",
"command": [
"julia.exe",
"--project=C:\\Users\\myname\\.julia\\packages\\LanguageServer\\0vsx2\\src\\LanguageServer.jl\\environment",
"-e",
"using LanguageServer; runserver()"
],
"settings": {},
"support-single-file": false
} and also added something to the lsp-bridge.el file, However, the julia language server could not be started, the lsp-bridge buffer shows log.txt |
Looks like julia language server send You can research julia's docs, and add some handler at Line 594 in 5ff4f33
Line 449 in 5ff4f33
|
@honghuzi hey, some problem occurs, the julials not working by the way, did you know your json is not correct in |
It would be great if lsp-bridge has julialang support.
The text was updated successfully, but these errors were encountered: