mirror of https://github.com/helix-editor/helix
feat: add tombi language server (#13723)
parent
9dbfb9b4eb
commit
ab97585b69
|
@ -238,7 +238,7 @@
|
||||||
| thrift | ✓ | | | |
|
| thrift | ✓ | | | |
|
||||||
| tlaplus | ✓ | | | |
|
| tlaplus | ✓ | | | |
|
||||||
| todotxt | ✓ | | | |
|
| todotxt | ✓ | | | |
|
||||||
| toml | ✓ | ✓ | | `taplo` |
|
| toml | ✓ | ✓ | | `taplo`, `tombi` |
|
||||||
| tsq | ✓ | | | `ts_query_ls` |
|
| tsq | ✓ | | | `ts_query_ls` |
|
||||||
| tsx | ✓ | ✓ | ✓ | `typescript-language-server` |
|
| tsx | ✓ | ✓ | ✓ | `typescript-language-server` |
|
||||||
| twig | ✓ | | | |
|
| twig | ✓ | | | |
|
||||||
|
|
|
@ -120,6 +120,7 @@ taplo = { command = "taplo", args = ["lsp", "stdio"] }
|
||||||
templ = { command = "templ", args = ["lsp"] }
|
templ = { command = "templ", args = ["lsp"] }
|
||||||
terraform-ls = { command = "terraform-ls", args = ["serve"] }
|
terraform-ls = { command = "terraform-ls", args = ["serve"] }
|
||||||
texlab = { command = "texlab" }
|
texlab = { command = "texlab" }
|
||||||
|
tombi = { command = "tombi", args = ["lsp"] }
|
||||||
ty = { command = "ty", args = ["server"] }
|
ty = { command = "ty", args = ["server"] }
|
||||||
typespec = { command = "tsp-server", args = ["--stdio"] }
|
typespec = { command = "tsp-server", args = ["--stdio"] }
|
||||||
vala-language-server = { command = "vala-language-server" }
|
vala-language-server = { command = "vala-language-server" }
|
||||||
|
@ -345,7 +346,7 @@ scope = "source.toml"
|
||||||
injection-regex = "toml"
|
injection-regex = "toml"
|
||||||
file-types = ["toml", { glob = "pdm.lock" }, { glob = "poetry.lock" }, { glob = "Cargo.lock" }, { glob = "uv.lock" }]
|
file-types = ["toml", { glob = "pdm.lock" }, { glob = "poetry.lock" }, { glob = "Cargo.lock" }, { glob = "uv.lock" }]
|
||||||
comment-token = "#"
|
comment-token = "#"
|
||||||
language-servers = [ "taplo" ]
|
language-servers = [ "taplo", "tombi" ]
|
||||||
indent = { tab-width = 2, unit = " " }
|
indent = { tab-width = 2, unit = " " }
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
|
|
Loading…
Reference in New Issue