diff options
author | Blaž Hrastnik | 2021-10-24 14:09:15 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-10-24 14:09:24 +0000 |
commit | 42eee9d5bfe6248eb3a343bd12897f4915303857 (patch) | |
tree | 606142ce3527ba8998d957527503ad9b06024241 /book/src | |
parent | 2ed01f2d9c8c98a7e59fef1bb19af56ec897084b (diff) |
book: Document Alt-. and .
Diffstat (limited to 'book/src')
-rw-r--r-- | book/src/keymap.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/book/src/keymap.md b/book/src/keymap.md index 644dc1c9..2ff8bfe6 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -22,6 +22,7 @@ | `f` | Find next char | `find_next_char` | | `T` | Find 'till previous char | `till_prev_char` | | `F` | Find previous char | `find_prev_char` | +| `Alt-.` | Repeat last motion (`f`, `t` or `m`) | `repeat_last_motion` | | `Home` | Move to the start of the line | `goto_line_start` | | `End` | Move to the end of the line | `goto_line_end` | | `PageUp` | Move page up | `page_up` | @@ -54,6 +55,7 @@ | `A` | Insert at the end of the line | `append_to_line` | | `o` | Open new line below selection | `open_below` | | `O` | Open new line above selection | `open_above` | +| `.` | Repeat last change | N/A | | `u` | Undo change | `undo` | | `U` | Redo change | `redo` | | `y` | Yank selection | `yank` | |