nvim-treesitter/queries/hcl
Roberto Pommella Alegro aac4f027c5 Add heredoc language injection for HCL
Add a heredoc language injection similar to Ruby for HCL. This allows terraform resources like this to be properly highlighted

```hcl
resource "aws_iam_role" "sample" {
  name               = "sample"
  assume_role_policy = <<JSON
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Action": "sts:AssumeRole",
      "Principal": {
        "AWS": "*"
      },
      "Effect": "Allow",
      "Sid": ""
    }
  ]
}
JSON
}
```
2022-07-08 21:58:42 +02:00
..
folds.scm fold HCL objects (#1479) 2021-07-03 16:00:20 -05:00
highlights.scm indent(hcl): fix function calls 2022-04-25 23:36:36 +02:00
indents.scm indent(hcl): fix function calls 2022-04-25 23:36:36 +02:00
injections.scm Add heredoc language injection for HCL 2022-07-08 21:58:42 +02:00