Align queries with 'nvim-treesitter'
All checks were successful
ci/woodpecker/push/check Pipeline was successful

Makes it easier to update either way.
This commit is contained in:
Bruno BELANYI 2024-12-23 23:08:26 -05:00
parent aeb1fc2bb5
commit 16c43068ec
5 changed files with 26 additions and 42 deletions

View file

@ -1,41 +1,35 @@
(comment) @comment
; Operators {{{
(operator) @operator
(integer_literal ("-") @operator)
; }}}
(integer_literal
"-" @operator)
; Punctuation {{{
[
","
":"
","
":"
] @punctuation.delimiter
[
"("
")"
"["
"]"
"{"
"}"
"("
")"
"["
"]"
"{"
"}"
] @punctuation.bracket
; }}}
; Literal {{{
(boolean_literal) @boolean
(integer_literal) @number
[
(raw_string_literal)
(interpreted_string_literal)
(raw_string_literal)
(interpreted_string_literal)
] @string
(escape_sequence) @string.escape
; }}}
; Declarations {{{
(identifier) @variable
(module
@ -44,25 +38,19 @@
(module
(property
field: (identifier) @variable.parameter))
; }}}
; Built-ins {{{
[
(unset)
(default)
(any)
(unset)
(default)
(any)
] @variable.builtin
(condition
name: (identifier) @function.builtin)
; }}}
; Expressions {{{
(condition
name: (identifier) @function.builtin)
(map_expression
(property
field: (identifier) @property))
(select_expression
"select" @keyword.conditional)
; }}}
; vim: sw=2 foldmethod=marker