From 1999e026af43b5534eefd5a24a00c135c2d80022 Mon Sep 17 00:00:00 2001 From: thomasschafer Date: Wed, 29 Jan 2025 11:00:27 +0000 Subject: [PATCH] Remove incorrect treesitter hint --- helix-term/src/commands.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index a6e311742..4e9b41c0b 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -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", ); }