Remove incorrect treesitter hint

pull/11695/head
thomasschafer 2025-01-29 11:00:27 +00:00 committed by Thomas Schafer
parent 31d45abf97
commit 1999e026af
No known key found for this signature in database
1 changed files with 4 additions and 4 deletions

View File

@ -760,10 +760,10 @@ impl FallbackCommand {
#[rustfmt::skip]
static_fallback_commands!(
select_textobject_inside_surrounding_pair, "Select inside any character pair (tree-sitter)",
select_textobject_around_surrounding_pair, "Select around any character pair (tree-sitter)",
select_textobject_inside_prev_pair, "Select inside previous character pair (tree-sitter)",
select_textobject_inside_next_pair, "Select inside next character pair (tree-sitter)",
select_textobject_inside_surrounding_pair, "Select inside any character pair",
select_textobject_around_surrounding_pair, "Select around any character pair",
select_textobject_inside_prev_pair, "Select inside previous character pair",
select_textobject_inside_next_pair, "Select inside next character pair",
);
}