From d37369c1e056e41d405bc95b13efd550c57fa933 Mon Sep 17 00:00:00 2001 From: tomKPZ Date: Wed, 6 Apr 2022 18:11:14 -0700 Subject: [PATCH] Add paragraph textobject to match infobox (#1969) --- helix-term/src/commands.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index 9a222427..c7eb46ab 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -4025,6 +4025,7 @@ fn select_textobject(cx: &mut Context, objtype: textobject::TextObject) { let help_text = [ ("w", "Word"), ("W", "WORD"), + ("p", "Paragraph"), ("c", "Class (tree-sitter)"), ("f", "Function (tree-sitter)"), ("a", "Argument/parameter (tree-sitter)"),