Add Tera templating language support (#12756)

This commit is contained in:
uncenter 2025-02-04 11:56:36 -05:00 committed by GitHub
parent 313a6479b1
commit 75abc23428
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 253 additions and 0 deletions

View file

@ -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" }