aboutsummaryrefslogtreecommitdiff
path: root/helix-term
diff options
context:
space:
mode:
authortomKPZ2022-04-07 01:11:14 +0000
committerGitHub2022-04-07 01:11:14 +0000
commitd37369c1e056e41d405bc95b13efd550c57fa933 (patch)
treeec1458ade0f6ea0f86423429bf90438f3f0bb92d /helix-term
parentb03421a8c0811b48da0f30f4d4fce41a1f98a547 (diff)
Add paragraph textobject to match infobox (#1969)
Diffstat (limited to 'helix-term')
-rw-r--r--helix-term/src/commands.rs1
1 files changed, 1 insertions, 0 deletions
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)"),