Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/v/textobjects.scm')
-rw-r--r--runtime/queries/v/textobjects.scm27
1 files changed, 0 insertions, 27 deletions
diff --git a/runtime/queries/v/textobjects.scm b/runtime/queries/v/textobjects.scm
deleted file mode 100644
index c2f5ecef..00000000
--- a/runtime/queries/v/textobjects.scm
+++ /dev/null
@@ -1,27 +0,0 @@
-(function_declaration
- body: (block)? @function.inside) @function.around
-
-((function_declaration
- name: (identifier) @_name
- body: (block)? @test.inside) @test.around
- (#match? @_name "^test"))
-
-(function_literal
- body: (block)? @function.inside) @function.around
-
-(parameter_list
- ((_) @parameter.inside . ","? @parameter.around) @parameter.around)
-
-(call_expression
- (argument_list
- ((_) @parameter.inside) @parameter.around))
-
-(struct_declaration
- (struct_field_declaration) @class.inside) @class.around
-
-(struct_field_declaration
- ((_) @parameter.inside) @parameter.around)
-
-[(line_comment) (block_comment)] @comment.inside
-[(line_comment)+ (block_comment)+] @comment.around
-