Add textobject for entries/elements of list-like things (#8150)

This commit is contained in:
Daniel S Poulin 2024-03-31 12:53:15 -04:00 committed by GitHub
parent 47ef9f0ca2
commit 1abb64e48d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 145 additions and 3 deletions

View file

@ -59,3 +59,27 @@
(function_item
body: (_) @test.inside) @test.around
(#eq? @_test_attribute "test"))
(array_expression
(_) @entry.around)
(tuple_expression
(_) @entry.around)
(tuple_pattern
(_) @entry.around)
; Commonly used vec macro intializer is special cased
(macro_invocation
(identifier) @_id (token_tree (_) @entry.around)
(#eq? @_id "vec"))
(enum_variant) @entry.around
(field_declaration
(_) @entry.inside) @entry.around
(field_initializer
(_) @entry.inside) @entry.around
(shorthand_field_initializer) @entry.around