mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Add TypeSpec support (#11412)
* Add TypeSpec support Adds support for TypeSpec <https://typespec.io> in helix. * Resolve PR comments * Pull in LICENSE Co-authored-by: Michael Davis <mcarsondavis@gmail.com> --------- Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
This commit is contained in:
parent
c9c4452824
commit
d6431f41d9
6 changed files with 270 additions and 0 deletions
|
@ -94,6 +94,7 @@ taplo = { command = "taplo", args = ["lsp", "stdio"] }
|
|||
templ = { command = "templ", args = ["lsp"] }
|
||||
terraform-ls = { command = "terraform-ls", args = ["serve"] }
|
||||
texlab = { command = "texlab" }
|
||||
typespec = { command = "tsp-server", args = ["--stdio"] }
|
||||
vala-language-server = { command = "vala-language-server" }
|
||||
vhdl_ls = { command = "vhdl_ls", args = [] }
|
||||
vlang-language-server = { command = "v-analyzer" }
|
||||
|
@ -767,6 +768,23 @@ indent = { tab-width = 2, unit = " " }
|
|||
name = "typescript"
|
||||
source = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "b1bf4825d9eaa0f3bdeb1e52f099533328acfbdf", subpath = "typescript" }
|
||||
|
||||
[[language]]
|
||||
name = "typespec"
|
||||
scope = "source.typespec"
|
||||
injection-regex = "(tsp|typespec)"
|
||||
language-id = "typespec"
|
||||
file-types = ["tsp"]
|
||||
roots = ["tspconfig.yaml"]
|
||||
auto-format = true
|
||||
comment-token = "//"
|
||||
block-comment-tokens = { start = "/*", end = "*/" }
|
||||
language-servers = ["typespec"]
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
|
||||
[[grammar]]
|
||||
name = "typespec"
|
||||
source = { git = "https://github.com/happenslol/tree-sitter-typespec", rev = "0ee05546d73d8eb64635ed8125de6f35c77759fe" }
|
||||
|
||||
[[language]]
|
||||
name = "tsx"
|
||||
scope = "source.tsx"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue