diff options
author | Jaakko Paju | 2024-03-23 06:25:08 +0000 |
---|---|---|
committer | GitHub | 2024-03-23 06:25:08 +0000 |
commit | d5c2973cd10c38512f6e568f097bedca46ff5f48 (patch) | |
tree | 2764d4aa99f46034b2e4ed7c9bdd7e8807e9481b /book | |
parent | be307a420480178c1bc443992c8336f6471b8b7b (diff) |
Fix repeat last motion for goto next/prev diagnostic (#9966)
Diffstat (limited to 'book')
-rw-r--r-- | book/src/keymap.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/keymap.md b/book/src/keymap.md index bb09b031..60ada4a2 100644 --- a/book/src/keymap.md +++ b/book/src/keymap.md @@ -49,7 +49,7 @@ Normal mode is the default mode when you launch helix. You can return to it from | `T` | Find 'till previous char | `till_prev_char` | | `F` | Find previous char | `find_prev_char` | | `G` | Go to line number `<n>` | `goto_line` | -| `Alt-.` | Repeat last motion (`f`, `t` or `m`) | `repeat_last_motion` | +| `Alt-.` | Repeat last motion (`f`, `t`, `m`, `[` or `]`) | `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` | | `Ctrl-b`, `PageUp` | Move page up | `page_up` | |