Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/ada/textobjects.scm')
| -rw-r--r-- | runtime/queries/ada/textobjects.scm | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/runtime/queries/ada/textobjects.scm b/runtime/queries/ada/textobjects.scm deleted file mode 100644 index 433b582a..00000000 --- a/runtime/queries/ada/textobjects.scm +++ /dev/null @@ -1,21 +0,0 @@ -;; Support for high-level text objects selections. -;; For instance: -;; maf (v)isually select (a) (f)unction or subprogram -;; mif (v)isually select (i)nside a (f)unction or subprogram -;; mai (v)isually select (a) (i)f statement (or loop) -;; mii (v)isually select (i)nside an (i)f statement (or loop) -;; -;; For navigations using textobjects, check link below: -;; https://docs.helix-editor.com/master/usage.html#navigating-using-tree-sitter-textobjects -;; -;; For Textobject queries explanation, check out link below: -;; https://docs.helix-editor.com/master/guides/textobject.html - -(subprogram_body) @function.around -(subprogram_body (non_empty_declarative_part) @function.inside) -(subprogram_body (handled_sequence_of_statements) @function.inside) -(function_specification) @function.around -(procedure_specification) @function.around -(package_declaration) @function.around -(generic_package_declaration) @function.around -(package_body) @function.around |