Add bracket queries for HCL, Terraform (#10785)

Release Notes:

- N/A
This commit is contained in:
Max Brunsfeld 2024-04-19 10:59:14 -07:00 committed by GitHub
parent f082344747
commit 247b0317b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 16 additions and 1 deletions

View file

@ -1,7 +1,7 @@
id = "terraform"
name = "Terraform"
description = "Terraform support."
version = "0.0.2"
version = "0.0.3"
schema_version = 1
authors = ["Caius Durling <dev@caius.name>", "Daniel Banck <dbanck@users.noreply.github.com>"]
repository = "https://github.com/zed-industries/zed"

View file

@ -0,0 +1,5 @@
("(" @open ")" @close)
("[" @open "]" @close)
("{" @open "}" @close)
((block_start) @open (block_end) @close)
((tuple_start) @open (tuple_end) @close)

View file

@ -0,0 +1,5 @@
("(" @open ")" @close)
("[" @open "]" @close)
("{" @open "}" @close)
((block_start) @open (block_end) @close)
((tuple_start) @open (tuple_end) @close)

View file

@ -0,0 +1,5 @@
("(" @open ")" @close)
("[" @open "]" @close)
("{" @open "}" @close)
((block_start) @open (block_end) @close)
((tuple_start) @open (tuple_end) @close)