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.
19 lines
319 B
Scheme
19 lines
319 B
Scheme
(function_definition
|
|
body: (block)? @function.inside) @function.around
|
|
|
|
(class_definition
|
|
body: (block)? @class.inside) @class.around
|
|
|
|
(parameters
|
|
(_) @parameter.inside)
|
|
|
|
(lambda_parameters
|
|
(_) @parameter.inside)
|
|
|
|
(argument_list
|
|
(_) @parameter.inside)
|
|
|
|
(comment) @comment.inside
|
|
|
|
(comment)+ @comment.around
|