Files
tree-sitter-jhcl/queries/highlights.scm

12 lines
241 B
Scheme
Raw Normal View History

2021-06-07 20:50:00 +02:00
; highlights.scm
2021-06-08 01:28:18 +02:00
(block name: (identifier) @hcl_block_name)
(attribute name: (identifier) @hcl_attribute_name)
2021-06-08 00:45:23 +02:00
(identifier) @string.special
(string_lit) @string
2021-06-07 20:50:00 +02:00
(numeric_lit) @number
2021-06-08 00:45:23 +02:00
(bool_lit) @boolean
(null_lit) @null
2021-06-07 20:50:00 +02:00
(comment) @comment
2021-06-08 00:45:23 +02:00