mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-26 19:33:30 +04: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)
|