mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Add Tera templating language support (#12756)
This commit is contained in:
parent
313a6479b1
commit
75abc23428
5 changed files with 253 additions and 0 deletions
|
@ -4111,3 +4111,19 @@ indent = { tab-width = 2, unit = " " }
|
|||
[[grammar]]
|
||||
name = "ghostty"
|
||||
source = { git = "https://github.com/bezhermoso/tree-sitter-ghostty" , rev = "8438a93b44367e962b2ea3a3b6511885bebd196a" }
|
||||
|
||||
[[language]]
|
||||
name = "tera"
|
||||
scope = "source.tera"
|
||||
file-types = ["tera"]
|
||||
block-comment-tokens = [
|
||||
{ start = "{#", end = "#}" },
|
||||
{ start = "{#-", end = "-#}" },
|
||||
{ start = "{#", end = "-#}" },
|
||||
{ start = "{#-", end = "#}" },
|
||||
]
|
||||
indent = { tab-width = 4, unit = " " }
|
||||
|
||||
[[grammar]]
|
||||
name = "tera"
|
||||
source = { git = "https://github.com/uncenter/tree-sitter-tera", rev = "e8d679a29c03e64656463a892a30da626e19ed8e" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue