mirror of
https://github.com/realAscot/helix.git
synced 2025-09-14 12:13:04 +02:00
27 lines
452 B
Scheme
27 lines
452 B
Scheme
|
(function_item
|
||
|
body: (_) @function.inside) @function.around
|
||
|
|
||
|
(struct_item
|
||
|
body: (_) @class.inside) @class.around
|
||
|
|
||
|
(enum_item
|
||
|
body: (_) @class.inside) @class.around
|
||
|
|
||
|
(union_item
|
||
|
body: (_) @class.inside) @class.around
|
||
|
|
||
|
(trait_item
|
||
|
body: (_) @class.inside) @class.around
|
||
|
|
||
|
(impl_item
|
||
|
body: (_) @class.inside) @class.around
|
||
|
|
||
|
(parameters
|
||
|
(_) @parameter.inside)
|
||
|
|
||
|
(closure_parameters
|
||
|
(_) @parameter.inside)
|
||
|
|
||
|
(arguments
|
||
|
(_) @parameter.inside)
|