mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
20 lines
628 B
Scheme
20 lines
628 B
Scheme
[
|
|
(class_declaration body: (_) @class.inside)
|
|
(struct_declaration body: (_) @class.inside)
|
|
(interface_declaration body: (_) @class.inside)
|
|
(enum_declaration body: (_) @class.inside)
|
|
(delegate_declaration)
|
|
(record_declaration body: (_) @class.inside)
|
|
] @class.around
|
|
|
|
(constructor_declaration body: (_) @function.inside) @function.around
|
|
|
|
(destructor_declaration body: (_) @function.inside) @function.around
|
|
|
|
(method_declaration body: (_) @function.inside) @function.around
|
|
|
|
(property_declaration (_) @function.inside) @function.around
|
|
|
|
(parameter (_) @parameter.inside) @parameter.around
|
|
|
|
(comment)+ @comment.around
|