mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Add support for Mojo (#10743)
* Add support for Mojo * Update grammar * Fix queries * Fix docs * Use inheritance for some files
This commit is contained in:
parent
e76020ddb9
commit
889bbefeb3
7 changed files with 272 additions and 0 deletions
|
@ -55,6 +55,7 @@ markdown-oxide = { command = "markdown-oxide" }
|
|||
marksman = { command = "marksman", args = ["server"] }
|
||||
metals = { command = "metals", config = { "isHttpEnabled" = true, metals = { inlayHints = { typeParameters = {enable = true} , hintsInPatternMatch = {enable = true} } } } }
|
||||
mint = { command = "mint", args = ["ls"] }
|
||||
mojo-lsp = { command = "mojo-lsp-server" }
|
||||
nil = { command = "nil" }
|
||||
nimlangserver = { command = "nimlangserver" }
|
||||
nimlsp = { command = "nimlsp" }
|
||||
|
@ -372,6 +373,22 @@ block-comment-tokens = { start = "/*", end = "*/" }
|
|||
language-servers = [ "mint" ]
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
|
||||
[[language]]
|
||||
name = "mojo"
|
||||
scope = "source.mojo"
|
||||
roots = ["__init__.mojo"]
|
||||
injection-regex = "mojo"
|
||||
file-types = ["mojo", "🔥"]
|
||||
language-servers = [ "mojo-lsp" ]
|
||||
comment-token = "#"
|
||||
indent = { tab-width = 4, unit = " " }
|
||||
auto-format = true
|
||||
formatter = { command = "mojo", args = ["format", "-q", "-"]}
|
||||
|
||||
[[grammar]]
|
||||
name = "mojo"
|
||||
source = { git = "https://github.com/lsh/tree-sitter-mojo", rev = "3d7c53b8038f9ebbb57cd2e61296180aa5c1cf64" }
|
||||
|
||||
[[language]]
|
||||
name = "janet"
|
||||
scope = "source.janet"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue