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.
34 lines
833 B
Scheme
34 lines
833 B
Scheme
(proc_declaration
|
|
body: (_) @function.inside) @function.around
|
|
(func_declaration
|
|
body: (_) @function.inside) @function.around
|
|
(iterator_declaration
|
|
body: (_) @function.inside) @function.around
|
|
(converter_declaration
|
|
body: (_) @function.inside) @function.around
|
|
(method_declaration
|
|
body: (_) @function.inside) @function.around
|
|
(template_declaration
|
|
body: (_) @function.inside) @function.around
|
|
(macro_declaration
|
|
body: (_) @function.inside) @function.around
|
|
|
|
(type_declaration (_) @class.inside) @class.around
|
|
|
|
(parameter_declaration
|
|
(symbol_declaration_list) @parameter.inside) @parameter.around
|
|
|
|
[
|
|
(comment)
|
|
(block_comment)
|
|
(documentation_comment)
|
|
(block_documentation_comment)
|
|
] @comment.inside
|
|
|
|
[
|
|
(comment)+
|
|
(block_comment)
|
|
(documentation_comment)+
|
|
(block_documentation_comment)+
|
|
] @comment.around
|