diff options
author | tomKPZ | 2022-04-07 01:11:14 +0000 |
---|---|---|
committer | GitHub | 2022-04-07 01:11:14 +0000 |
commit | d37369c1e056e41d405bc95b13efd550c57fa933 (patch) | |
tree | ec1458ade0f6ea0f86423429bf90438f3f0bb92d /helix-term/src | |
parent | b03421a8c0811b48da0f30f4d4fce41a1f98a547 (diff) |
Add paragraph textobject to match infobox (#1969)
Diffstat (limited to 'helix-term/src')
-rw-r--r-- | helix-term/src/commands.rs | 1 |
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)"), |