mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Add textobject for entries/elements of list-like things (#8150)
This commit is contained in:
parent
47ef9f0ca2
commit
1abb64e48d
17 changed files with 145 additions and 3 deletions
|
@ -4,3 +4,9 @@
|
|||
(type_alias_declaration
|
||||
value: (_) @class.inside)
|
||||
] @class.around
|
||||
|
||||
(enum_body
|
||||
(_) @entry.around)
|
||||
|
||||
(enum_assignment (_) @entry.inside)
|
||||
|
||||
|
|
|
@ -7,3 +7,6 @@
|
|||
(comment) @comment.inside
|
||||
|
||||
(comment)+ @comment.around
|
||||
|
||||
(array
|
||||
(_) @entry.around)
|
||||
|
|
|
@ -19,3 +19,9 @@
|
|||
(comment) @comment.inside
|
||||
|
||||
(comment)+ @comment.around
|
||||
|
||||
(enumerator
|
||||
(_) @entry.inside) @entry.around
|
||||
|
||||
(initializer_list
|
||||
(_) @entry.around)
|
||||
|
|
|
@ -34,3 +34,12 @@
|
|||
(comment) @comment.inside
|
||||
|
||||
(comment)+ @comment.around
|
||||
|
||||
(array
|
||||
(_) @entry.around)
|
||||
|
||||
(pair
|
||||
(_) @entry.inside) @entry.around
|
||||
|
||||
(pair_pattern
|
||||
(_) @entry.inside) @entry.around
|
||||
|
|
23
runtime/queries/graphql/textobjects.scm
Normal file
23
runtime/queries/graphql/textobjects.scm
Normal 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
|
|
@ -36,3 +36,9 @@
|
|||
(line_comment)+ @comment.around
|
||||
|
||||
(block_comment) @comment.around
|
||||
|
||||
(array_initializer
|
||||
(_) @entry.around)
|
||||
|
||||
(enum_body
|
||||
(enum_constant) @entry.around)
|
||||
|
|
5
runtime/queries/json/textobjects.scm
Normal file
5
runtime/queries/json/textobjects.scm
Normal file
|
@ -0,0 +1,5 @@
|
|||
(pair
|
||||
(_) @entry.inside) @entry.around
|
||||
|
||||
(array
|
||||
(_) @entry.around)
|
|
@ -13,3 +13,6 @@
|
|||
(comment) @comment.inside
|
||||
|
||||
(comment)+ @comment.around
|
||||
|
||||
(table_constructor
|
||||
(field (_) @entry.inside) @entry.around)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
5
runtime/queries/toml/textobjects.scm
Normal file
5
runtime/queries/toml/textobjects.scm
Normal file
|
@ -0,0 +1,5 @@
|
|||
(pair
|
||||
(_) @entry.inside) @entry.around
|
||||
|
||||
(array
|
||||
(_) @entry.around)
|
Loading…
Add table
Add a link
Reference in a new issue