mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-23 01:46:18 +04:00
28 lines
562 B
Scheme
28 lines
562 B
Scheme
(function_definition
|
|
body: (_) @function.inside) @function.around
|
|
|
|
(struct_specifier
|
|
body: (_) @class.inside) @class.around
|
|
|
|
(enum_specifier
|
|
body: (_) @class.inside) @class.around
|
|
|
|
(union_specifier
|
|
body: (_) @class.inside) @class.around
|
|
|
|
(parameter_list
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
(argument_list
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
(comment) @comment.inside
|
|
|
|
(comment)+ @comment.around
|
|
|
|
(enumerator
|
|
(_) @entry.inside) @entry.around
|
|
|
|
(initializer_list
|
|
(_) @entry.around)
|