aboutsummaryrefslogtreecommitdiff
path: root/book
diff options
context:
space:
mode:
authorBob2022-08-29 01:00:40 +0000
committerGitHub2022-08-29 01:00:40 +0000
commit411c5e48713d055be9e2031e66bf954c819bea43 (patch)
tree4945ef3fd88ac9be8f1529b04f65c5c8a58e19c6 /book
parentf38ede8631b083c1c74d31b7658ad162d31c3972 (diff)
let extend-line respect range direction (#3046)
* let extend-line respect range direction * fix extend above logic * keep `x` existing binding * Update book/src/keymap.md Co-authored-by: Ivan Tham <pickfire@riseup.net> Co-authored-by: Ivan Tham <pickfire@riseup.net>
Diffstat (limited to 'book')
-rw-r--r--book/src/keymap.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/keymap.md b/book/src/keymap.md
index f84393ac..a26fd7ea 100644
--- a/book/src/keymap.md
+++ b/book/src/keymap.md
@@ -125,7 +125,7 @@
| `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` |
+| `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` |
| `Alt-x` | Shrink selection to line bounds (line-wise selection) | `shrink_to_line_bounds` |
| `J` | Join lines inside selection | `join_selections` |