From f875845cb38d7a9110dbed6ae8d6c85747b26ef9 Mon Sep 17 00:00:00 2001 From: Nikita Revenco <154856872+nikitarevenco@users.noreply.github.com> Date: Wed, 6 Nov 2024 17:10:49 +0000 Subject: [PATCH] docs: document changes to x and X --- book/src/keymap.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/src/keymap.md b/book/src/keymap.md index 71ae5e31f..deef4c618 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -133,8 +133,8 @@ Normal mode is the default mode when you launch helix. You can return to it from | `Alt-(` | Rotate selection contents backward | `rotate_selection_contents_backward` | | `Alt-)` | Rotate selection contents forward | `rotate_selection_contents_forward` | | `%` | Select entire file | `select_all` | -| `x` | Select current line, if already selected, extend to next line | `extend_line_below` | -| `X` | Extend selection to line bounds (line-wise selection) | `extend_to_line_bounds` | +| `x` | Increase selection below by one line | `select_line_below` | +| `X` | Increase selection above by one line | `select_line_above` | | `Alt-x` | Shrink selection to line bounds (line-wise selection) | `shrink_to_line_bounds` | | `J` | Join lines inside selection | `join_selections` | | `Alt-J` | Join lines inside selection and select the inserted space | `join_selections_space` |