diff options
author | Rowan H | 2021-10-22 23:54:23 +0000 |
---|---|---|
committer | GitHub | 2021-10-22 23:54:23 +0000 |
commit | 6c995fa6906f9d6895d27fd4b595ba254cbb966a (patch) | |
tree | e9fa70cc928cd60374dc8de44d6e40be974e8783 | |
parent | 75a8e8afbd06b69f182f6fb9c0d3b0cd2241c0c8 (diff) |
Fixed incorrect move commands (#894)
-rw-r--r-- | book/src/keymap.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/book/src/keymap.md b/book/src/keymap.md index 277cced2..3dfc5dc4 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -9,9 +9,9 @@ | Key | Description | Command | | ----- | ----------- | ------- | | `h`/`Left` | Move left | `move_char_left` | -| `j`/`Down` | Move down | `move_char_right` | +| `j`/`Down` | Move down | `move_line_down` | | `k`/`Up` | Move up | `move_line_up` | -| `l`/`Right` | Move right | `move_line_down` | +| `l`/`Right` | Move right | `move_char_right` | | `w` | Move next word start | `move_next_word_start` | | `b` | Move previous word start | `move_prev_word_start` | | `e` | Move next word end | `move_next_word_end` | |