2021-10-23 06:41:19 +04:00
|
|
|
(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
|
2022-04-18 19:14:48 +04:00
|
|
|
(type_spec (type_identifier) (interface_type (method_spec)+ @class.inside))) @class.around
|
2021-10-23 06:41:19 +04:00
|
|
|
|
2022-05-23 16:24:30 +04:00
|
|
|
(type_parameter_list
|
|
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
|
|
|
|
2021-10-23 06:41:19 +04:00
|
|
|
(parameter_list
|
2022-05-23 16:24:30 +04:00
|
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
2021-10-23 06:41:19 +04:00
|
|
|
|
|
|
|
(argument_list
|
2022-05-23 16:24:30 +04:00
|
|
|
((_) @parameter.inside . ","? @parameter.around) @parameter.around)
|
2022-03-06 09:24:24 +04:00
|
|
|
|
|
|
|
(comment) @comment.inside
|
|
|
|
|
|
|
|
(comment)+ @comment.around
|
2022-06-20 06:36:33 +04:00
|
|
|
|
|
|
|
((function_declaration
|
|
|
|
name: (identifier) @_name
|
|
|
|
body: (block)? @test.inside) @test.around
|
|
|
|
(#match? @_name "^Test"))
|