forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
474 B
Scheme
22 lines
474 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
|