chore(grammar): update cairo + queries (#12712)

This commit is contained in:
0xLucqs 2025-01-28 15:19:33 +01:00 committed by GitHub
parent 8d6efaf350
commit 6049f2035b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 24 additions and 1 deletions

View file

@ -71,6 +71,8 @@
"<"
">"
] @punctuation.bracket)
(closure_parameters
"|" @punctuation.bracket)
; ---
; Variables
@ -92,6 +94,8 @@
(parameter
pattern: (identifier) @variable.parameter)
(closure_parameters
(identifier) @variable.parameter)
; -------
; Keywords
; -------

View file

@ -115,6 +115,16 @@
(#not-same-line? @expr-start @pattern-guard)
) @indent
; Align closure parameters if they span more than one line
(closure_parameters
"|"
.
(_) @anchor
(_) @expr-end
.
(#not-same-line? @anchor @expr-end)
) @align
(for_expression
"in" @in
.

View file

@ -7,6 +7,7 @@
(type_item)
(trait_item)
(impl_item)
(closure_expression)
(block)
] @local.scope
@ -20,6 +21,8 @@
(constrained_type_parameter
left: (type_identifier) @local.definition)
(closure_parameters (identifier) @local.definition)
; References
(identifier) @local.reference
(type_identifier) @local.reference

View file

@ -1,6 +1,9 @@
(function_item
body: (_) @function.inside) @function.around
(closure_expression
body: (_) @function.inside) @function.around
(struct_item
body: (_) @class.inside) @class.around
@ -16,6 +19,9 @@
(parameters
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
(closure_parameters
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
(type_parameters
((_) @parameter.inside . ","? @parameter.around) @parameter.around)