From c6396af24027447107a2c6a43c975ea3eab3349c Mon Sep 17 00:00:00 2001 From: tomKPZ Date: Tue, 5 Apr 2022 20:03:30 -0700 Subject: [PATCH] Add paragraph textobject to match infobox --- 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 9a222427f751..c7eb46ab10cb 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)"),