tree-sitter-bp/queries/highlights.scm

24 lines
300 B
Scheme
Raw Normal View History

2024-04-08 21:38:24 +02:00
[
(line_comment)
(block_comment)
] @comment
2024-04-08 21:47:55 +02:00
; Literal {{{
(boolean_literal) @boolean
(integer_literal) @number
[
(raw_string_literal)
(interpreted_string_literal)
] @string
(escape_sequence) @string.escape
; }}}
2024-04-08 21:51:39 +02:00
; Declarations {{{
(identifier) @variable
; }}}
2024-04-08 21:38:24 +02:00
; vim: sw=2 foldmethod=marker