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
589 B
Scheme
22 lines
589 B
Scheme
3 years ago
|
(function_declaration
|
||
|
body: (block)? @function.inside) @function.around
|
||
|
|
||
|
(func_literal
|
||
|
(_)? @function.inside) @function.around
|
||
|
|
||
|
(method_declaration
|
||
|
body: (block)? @function.inside) @function.around
|
||
|
|
||
|
;; struct and interface declaration as class textobject?
|
||
|
(type_declaration
|
||
|
(type_spec (type_identifier) (struct_type (field_declaration_list (_)?) @class.inside))) @class.around
|
||
|
|
||
|
(type_declaration
|
||
|
(type_spec (type_identifier) (interface_type (method_spec_list (_)?) @class.inside))) @class.around
|
||
|
|
||
|
(parameter_list
|
||
|
(_) @parameter.inside)
|
||
|
|
||
|
(argument_list
|
||
|
(_) @parameter.inside)
|