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

@ -4,5 +4,3 @@
(module)
(select_expression)
] @fold
; vim: sw=2 foldmethod=marker

View file

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

View file

@ -1,36 +1,38 @@
; Expressions {{{
(list_expression) @indent.begin
(list_expression
"]" @indent.branch)
(map_expression) @indent.begin
(map_expression
"}" @indent.branch)
(select_expression) @indent.begin
(select_expression
")" @indent.branch)
(select_value) @indent.begin
(select_value
")" @indent.branch)
(select_pattern
"(" @indent.begin)
(select_pattern
")" @indent.branch)
(select_cases) @indent.begin
(select_cases
"}" @indent.branch)
; }}}
; Declarations {{{
(module) @indent.begin
(module
")" @indent.branch)
(module
"}" @indent.branch)
; }}}
; vim: sw=2 foldmethod=marker

View file

@ -1,4 +1,2 @@
((comment) @injection.content
(#set! injection.language "comment"))
; vim: sw=2 foldmethod=marker

View file

@ -13,5 +13,3 @@
binding: (identifier) @local.definition.var)
(identifier) @local.reference
; vim: sw=2 foldmethod=marker