Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions book/src/generated/lang-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
| gomod | ✓ | | | `gopls` |
| gotmpl | ✓ | | | `gopls` |
| gowork | ✓ | | | `gopls` |
| graphql | ✓ | | | `graphql-lsp` |
| graphql | ✓ | | | `graphql-lsp` |
| groovy | ✓ | | | |
| hare | ✓ | | | |
| haskell | ✓ | ✓ | | `haskell-language-server-wrapper` |
Expand All @@ -85,7 +85,7 @@
| javascript | ✓ | ✓ | ✓ | `typescript-language-server` |
| jinja | ✓ | | | |
| jsdoc | ✓ | | | |
| json | ✓ | | ✓ | `vscode-json-language-server` |
| json | ✓ | | ✓ | `vscode-json-language-server` |
| json5 | ✓ | | | |
| jsonnet | ✓ | | | `jsonnet-language-server` |
| jsx | ✓ | ✓ | ✓ | `typescript-language-server` |
Expand Down Expand Up @@ -176,7 +176,7 @@
| templ | ✓ | | | `templ` |
| tfvars | ✓ | | ✓ | `terraform-ls` |
| todotxt | ✓ | | | |
| toml | ✓ | | | `taplo` |
| toml | ✓ | | | `taplo` |
| tsq | ✓ | | | |
| tsx | ✓ | ✓ | ✓ | `typescript-language-server` |
| twig | ✓ | | | |
Expand Down
2 changes: 2 additions & 0 deletions book/src/guides/textobject.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ The following [captures][tree-sitter-captures] are recognized:
| `parameter.inside` |
| `comment.inside` |
| `comment.around` |
| `element.inside` |
| `element.around` |
EpocSquadron marked this conversation as resolved.
Show resolved Hide resolved

[Example query files][textobject-examples] can be found in the helix GitHub repository.

Expand Down
12 changes: 12 additions & 0 deletions helix-term/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,8 @@ impl MappableCommand {
goto_prev_comment, "Goto previous comment",
goto_next_test, "Goto next test",
goto_prev_test, "Goto previous test",
goto_next_entry, "Goto next pairing",
goto_prev_entry, "Goto previous pairing",
goto_next_paragraph, "Goto next paragraph",
goto_prev_paragraph, "Goto previous paragraph",
dap_launch, "Launch debug target",
Expand Down Expand Up @@ -5100,6 +5102,14 @@ fn goto_prev_test(cx: &mut Context) {
goto_ts_object_impl(cx, "test", Direction::Backward)
}

fn goto_next_entry(cx: &mut Context) {
goto_ts_object_impl(cx, "entry", Direction::Forward)
}

fn goto_prev_entry(cx: &mut Context) {
goto_ts_object_impl(cx, "entry", Direction::Backward)
}

fn select_textobject_around(cx: &mut Context) {
select_textobject(cx, textobject::TextObject::Around);
}
Expand Down Expand Up @@ -5164,6 +5174,7 @@ fn select_textobject(cx: &mut Context, objtype: textobject::TextObject) {
'a' => textobject_treesitter("parameter", range),
'c' => textobject_treesitter("comment", range),
'T' => textobject_treesitter("test", range),
'e' => textobject_treesitter("entry", range),
'p' => textobject::textobject_paragraph(text, range, objtype, count),
'm' => textobject::textobject_pair_surround_closest(
text, range, objtype, count,
Expand Down Expand Up @@ -5196,6 +5207,7 @@ fn select_textobject(cx: &mut Context, objtype: textobject::TextObject) {
("a", "Argument/parameter (tree-sitter)"),
("c", "Comment (tree-sitter)"),
("T", "Test (tree-sitter)"),
("e", "Data structure entry (tree-sitter)"),
("m", "Closest surrounding pair"),
(" ", "... or any character acting as a pair"),
];
Expand Down
2 changes: 2 additions & 0 deletions helix-term/src/keymap/default.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ pub fn default() -> HashMap<Mode, KeyTrie> {
"t" => goto_prev_class,
"a" => goto_prev_parameter,
"c" => goto_prev_comment,
"e" => goto_prev_entry,
"T" => goto_prev_test,
"p" => goto_prev_paragraph,
"space" => add_newline_above,
Expand All @@ -126,6 +127,7 @@ pub fn default() -> HashMap<Mode, KeyTrie> {
"t" => goto_next_class,
"a" => goto_next_parameter,
"c" => goto_next_comment,
"e" => goto_next_entry,
"T" => goto_next_test,
"p" => goto_next_paragraph,
"space" => add_newline_below,
Expand Down
6 changes: 6 additions & 0 deletions runtime/queries/_typescript/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@
(type_alias_declaration
value: (_) @class.inside)
] @class.around

(enum_body
(_) @entry.around)

(enum_assignment (_) @entry.inside)

3 changes: 3 additions & 0 deletions runtime/queries/bash/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
(comment) @comment.inside

(comment)+ @comment.around

(array
(_) @entry.around)
6 changes: 6 additions & 0 deletions runtime/queries/c/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,9 @@
(comment) @comment.inside

(comment)+ @comment.around

(enumerator
(_) @entry.inside) @entry.around

(initializer_list
(_) @entry.around)
9 changes: 9 additions & 0 deletions runtime/queries/ecma/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 23 additions & 0 deletions runtime/queries/graphql/textobjects.scm
Original file line number Diff line number Diff line change
@@ -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
6 changes: 6 additions & 0 deletions runtime/queries/java/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,9 @@
(line_comment)+ @comment.around

(block_comment) @comment.around

(array_initializer
(_) @entry.around)

(enum_body
(enum_constant) @entry.around)
5 changes: 5 additions & 0 deletions runtime/queries/json/textobjects.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(pair
(_) @entry.inside) @entry.around

(array
(_) @entry.around)
3 changes: 3 additions & 0 deletions runtime/queries/lua/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@
(comment) @comment.inside

(comment)+ @comment.around

(table_constructor
(field (_) @entry.inside) @entry.around)
12 changes: 12 additions & 0 deletions runtime/queries/php/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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
12 changes: 12 additions & 0 deletions runtime/queries/python/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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
12 changes: 12 additions & 0 deletions runtime/queries/ruby/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
24 changes: 24 additions & 0 deletions runtime/queries/rust/textobjects.scm
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 5 additions & 0 deletions runtime/queries/toml/textobjects.scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
(pair
(_) @entry.inside) @entry.around

(array
(_) @entry.around)
Loading