mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
languages: add protobuf language servers (#7796)
* languages: add bufls protobuf language server * languages: add pbkit protobuf language server
This commit is contained in:
parent
15e07d4db8
commit
325692a154
@ -115,7 +115,7 @@
|
||||
| ponylang | ✓ | ✓ | ✓ | |
|
||||
| prisma | ✓ | | | `prisma-language-server` |
|
||||
| prolog | | | | `swipl` |
|
||||
| protobuf | ✓ | | ✓ | |
|
||||
| protobuf | ✓ | | ✓ | `bufls`, `pb` |
|
||||
| prql | ✓ | | | |
|
||||
| purescript | ✓ | | | `purescript-language-server` |
|
||||
| python | ✓ | ✓ | ✓ | `pylsp` |
|
||||
|
@ -7,6 +7,7 @@ awk-language-server = { command = "awk-language-server" }
|
||||
bash-language-server = { command = "bash-language-server", args = ["start"] }
|
||||
bass = { command = "bass", args = ["--lsp"] }
|
||||
bicep-langserver = { command = "bicep-langserver" }
|
||||
bufls = { command = "bufls", args = ["serve"] }
|
||||
cairo-language-server = { command = "cairo-language-server", args = [] }
|
||||
cl-lsp = { command = "cl-lsp", args = [ "stdio" ] }
|
||||
clangd = { command = "clangd" }
|
||||
@ -48,6 +49,7 @@ ols = { command = "ols", args = [] }
|
||||
omnisharp = { command = "OmniSharp", args = [ "--languageserver" ] }
|
||||
openscad-lsp = { command = "openscad-lsp", args = ["--stdio"] }
|
||||
pasls = { command = "pasls", args = [] }
|
||||
pbkit = { command = "pb", args = [ "lsp" ] }
|
||||
perlnavigator = { command = "perlnavigator", args= ["--stdio"] }
|
||||
prisma-language-server = { command = "prisma-language-server", args = ["--stdio"] }
|
||||
purescript-language-server = { command = "purescript-language-server", args = ["--stdio"] }
|
||||
@ -258,6 +260,7 @@ name = "protobuf"
|
||||
scope = "source.proto"
|
||||
injection-regex = "protobuf"
|
||||
file-types = ["proto"]
|
||||
language-servers = [ "bufls", "pbkit" ]
|
||||
roots = []
|
||||
comment-token = "//"
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
|
Loading…
Reference in New Issue
Block a user