Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/inko/textobjects.scm')
-rw-r--r--runtime/queries/inko/textobjects.scm38
1 files changed, 0 insertions, 38 deletions
diff --git a/runtime/queries/inko/textobjects.scm b/runtime/queries/inko/textobjects.scm
deleted file mode 100644
index 30433380..00000000
--- a/runtime/queries/inko/textobjects.scm
+++ /dev/null
@@ -1,38 +0,0 @@
-(class
- body: (_) @class.inside) @class.around
-
-(trait
- body: (_) @class.inside) @class.around
-
-(method
- body: (_) @function.inside) @function.around
-
-(reopen_class
- body: (_) @class.inside) @class.around
-
-(implement_trait
- body: (_) @class.inside) @class.around
-
-(external_function
- body: (_) @function.inside) @function.around
-
-(closure
- body: (_) @function.inside) @function.around
-
-(arguments
- ((_) @parameter.inside . ","? @parameter.around) @parameter.around)
-
-(type_arguments
- ((_) @parameter.inside . ","? @parameter.around) @parameter.around)
-
-(line_comment) @comment.inside
-
-(line_comment)+ @comment.around
-
-(array (_) @entry.around)
-
-(tuple (_) @entry.around)
-
-(tuple_pattern (_) @entry.around)
-
-(define_field (_) @entry.inside) @entry.around