mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Add support for Inko (#10656)
This adds formatting and Tree-sitter support for Inko (https://inko-lang.org/).
This commit is contained in:
parent
295a9a95ce
commit
b437b8b0ee
7 changed files with 295 additions and 0 deletions
|
@ -2691,6 +2691,21 @@ indent = { tab-width = 4, unit = "\t" }
|
|||
name = "ini"
|
||||
source = { git = "https://github.com/justinmk/tree-sitter-ini", rev = "4d247fb876b4ae6b347687de4a179511bf67fcbc" }
|
||||
|
||||
[[language]]
|
||||
name = "inko"
|
||||
auto-format = true
|
||||
scope = "source.inko"
|
||||
injection-regex = "inko"
|
||||
file-types = ["inko"]
|
||||
roots = ["inko.pkg"]
|
||||
comment-token = "#"
|
||||
indent = { tab-width = 2, unit = " " }
|
||||
formatter = { command = "inko", args = ["fmt", "-"] }
|
||||
|
||||
[[grammar]]
|
||||
name = "inko"
|
||||
source = { git = "https://github.com/inko-lang/tree-sitter-inko", rev = "6983354c13a14bc621d7a3619f1790149e901187" }
|
||||
|
||||
[[language]]
|
||||
name = "bicep"
|
||||
scope = "source.bicep"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue