crates/zed/src/languages/terraform/config.toml 🔗
@@ -1,5 +1,5 @@
name = "Terraform"
-grammar = "terraform"
+grammar = "hcl"
path_suffixes = ["tf", "tfvars"]
line_comments = ["# ", "// "]
block_comment = ["/*", "*/"]
Daniel Banck created
https://github.com/zed-industries/zed/pull/7467 introduced a new
`grammar` field in the language configuration files.
The underlying tree-sitter grammar for Terraform should be `hcl` instead
of `terraform`. This PR fixes that typo.
Release Notes:
- N/A
crates/zed/src/languages/terraform/config.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -1,5 +1,5 @@
name = "Terraform"
-grammar = "terraform"
+grammar = "hcl"
path_suffixes = ["tf", "tfvars"]
line_comments = ["# ", "// "]
block_comment = ["/*", "*/"]