mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
chore(grammar): update cairo + queries (#12712)
This commit is contained in:
parent
8d6efaf350
commit
6049f2035b
5 changed files with 24 additions and 1 deletions
|
@ -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
|
||||
; -------
|
||||
|
|
|
@ -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
|
||||
.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue