mirror of https://github.com/helix-editor/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.
28 lines
681 B
Scheme
28 lines
681 B
Scheme
8 months ago
|
(method_declaration
|
||
|
(block) @function.inside) @function.around
|
||
|
|
||
|
(creation_method_declaration
|
||
|
(block) @function.inside) @function.around
|
||
|
|
||
|
(method_declaration
|
||
|
((parameter) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||
|
|
||
|
[
|
||
|
(class_declaration)
|
||
|
(struct_declaration)
|
||
|
(interface_declaration)
|
||
|
] @class.around
|
||
|
|
||
|
(type_arguments
|
||
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||
|
|
||
|
(creation_method_declaration
|
||
|
((parameter) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||
|
|
||
|
(method_call_expression
|
||
|
((argument) @parameter.inside . ","? @parameter.around) @parameter.around)
|
||
|
|
||
|
(comment) @comment.inside
|
||
|
|
||
|
(comment)+ @comment.around
|