mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 21:13:02 +00:00
15 lines
643 B
TOML
15 lines
643 B
TOML
|
name = "Terraform Vars"
|
||
|
grammar = "hcl"
|
||
|
path_suffixes = ["tfvars"]
|
||
|
line_comments = ["# ", "// "]
|
||
|
block_comment = ["/*", "*/"]
|
||
|
autoclose_before = ",}])"
|
||
|
brackets = [
|
||
|
{ start = "{", end = "}", close = true, newline = true },
|
||
|
{ start = "[", end = "]", close = true, newline = true },
|
||
|
{ start = "(", end = ")", close = true, newline = true },
|
||
|
{ start = "\"", end = "\"", close = true, newline = false, not_in = ["comment", "string"] },
|
||
|
{ start = "'", end = "'", close = true, newline = false, not_in = ["comment", "string"] },
|
||
|
{ start = "/*", end = " */", close = true, newline = false, not_in = ["comment", "string"] },
|
||
|
]
|