mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-04 12:30:01 -04:00
Remove textobjects module
This commit is contained in:
parent
7f325538cc
commit
3362f45196
16 changed files with 0 additions and 779 deletions
|
|
@ -1,36 +0,0 @@
|
|||
(function_declaration
|
||||
body: (statement_block) @function.inner) @function.outer
|
||||
|
||||
(export_statement
|
||||
(function_declaration) @function.outer) @function.outer.start
|
||||
|
||||
(arrow_function
|
||||
body: (_) @function.inner) @function.outer
|
||||
|
||||
(method_definition
|
||||
body: (statement_block) @function.inner) @function.outer
|
||||
|
||||
(class_declaration
|
||||
body: (class_body) @class.inner) @class.outer
|
||||
|
||||
(export_statement
|
||||
(class_declaration) @class.outer) @class.outer.start
|
||||
|
||||
(for_in_statement
|
||||
body: (_)? @loop.inner) @loop.outer
|
||||
|
||||
(while_statement
|
||||
body: (_)? @loop.inner) @loop.outer
|
||||
|
||||
(do_statement
|
||||
body: (_)? @loop.inner) @loop.outer
|
||||
|
||||
(if_statement
|
||||
consequence: (_)? @conditional.inner
|
||||
alternative: (_)? @conditional.inner) @conditional.outer
|
||||
|
||||
(switch_statement
|
||||
body: (_)? @conditional.inner) @conditional.outer
|
||||
|
||||
(call_expression) @call.outer
|
||||
(call_expression (arguments) @call.inner)
|
||||
Loading…
Add table
Add a link
Reference in a new issue