aboutsummaryrefslogtreecommitdiffstats
path: root/queries/astro/highlights.scm
blob: bdaf88e32d9cd58fd3b35ab5934d5ef36e52117d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
; inherits: html

"---" @punctuation.delimiter

[
  "{"
  "}"
] @punctuation.special

; custom components get `@type` highlighting
((start_tag
  (tag_name) @type)
  (#lua-match? @type "^[A-Z]"))

((end_tag
  (tag_name) @type)
  (#lua-match? @type "^[A-Z]"))

((erroneous_end_tag
  (erroneous_end_tag_name) @type)
  (#lua-match? @type "^[A-Z]"))