Fix Terraform syntax highlighting (#7518)
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
This commit is contained in:
parent
eaadf56db9
commit
31d9edfaaa
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
name = "Terraform"
|
||||
grammar = "terraform"
|
||||
grammar = "hcl"
|
||||
path_suffixes = ["tf", "tfvars"]
|
||||
line_comments = ["# ", "// "]
|
||||
block_comment = ["/*", "*/"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue