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

@ -4,3 +4,9 @@
(type_alias_declaration
value: (_) @class.inside)
] @class.around
(enum_body
(_) @entry.around)
(enum_assignment (_) @entry.inside)

View file

@ -7,3 +7,6 @@
(comment) @comment.inside
(comment)+ @comment.around
(array
(_) @entry.around)

View file

@ -19,3 +19,9 @@
(comment) @comment.inside
(comment)+ @comment.around
(enumerator
(_) @entry.inside) @entry.around
(initializer_list
(_) @entry.around)

View file

@ -34,3 +34,12 @@
(comment) @comment.inside
(comment)+ @comment.around
(array
(_) @entry.around)
(pair
(_) @entry.inside) @entry.around
(pair_pattern
(_) @entry.inside) @entry.around

View file

@ -0,0 +1,23 @@
(type_definition) @class.around
(executable_definition) @function.around
(arguments_definition
(input_value_definition) @parameter.inside @parameter.movement)
(arguments
(argument) @parameter.inside @parameter.movement)
(selection
[(field) (fragment_spread)] @entry.around)
(selection
(field (selection_set) @entry.inside))
(field_definition
(_) @entry.inside) @entry.around
(input_fields_definition
(input_value_definition ) @entry.around)
(enum_value) @entry.around

View file

@ -36,3 +36,9 @@
(line_comment)+ @comment.around
(block_comment) @comment.around
(array_initializer
(_) @entry.around)
(enum_body
(enum_constant) @entry.around)

View file

@ -0,0 +1,5 @@
(pair
(_) @entry.inside) @entry.around
(array
(_) @entry.around)

View file

@ -13,3 +13,6 @@
(comment) @comment.inside
(comment)+ @comment.around
(table_constructor
(field (_) @entry.inside) @entry.around)

View file

@ -38,3 +38,15 @@
(comment) @comment.inside
(comment)+ @comment.around
(array_creation_expression
(array_element_initializer
(_) @entry.inside
) @entry.around @entry.movement)
(list_literal
(_) @entry.inside @entry.around @entry.movement)
[
(enum_case)
] @entry.around @entry.movement

View file

@ -21,3 +21,15 @@
name: (identifier) @_name
body: (block)? @test.inside) @test.around
(#match? @_name "^test_"))
(list
(_) @entry.around)
(tuple
(_) @entry.around)
(set
(_) @entry.around)
(pair
(_) @entry.inside) @entry.around

View file

@ -42,3 +42,15 @@
; Comments
(comment) @comment.inside
(comment)+ @comment.around
(pair
(_) @entry.inside) @entry.around
(array
(_) @entry.around)
(string_array
(_) @entry.around)
(symbol_array
(_) @entry.around)

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

View file

@ -0,0 +1,5 @@
(pair
(_) @entry.inside) @entry.around
(array
(_) @entry.around)