diff --git a/README.md b/README.md index 2b2aae4..7a37120 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,8 @@ event_handler.on_key_event(key_event, &mut state); | `w` | Move forward to the start of a word | | `e` | Move forward to the end of a word | | `b` | Move backward to the start of a word | +| +d` | Jump a half page down | +| +u` | Jump a half page up | | `x` | Delete the character under the cursor | | `u`, `+r` | Undo/Redo last action | | `Esc` | Escape Visual mode | diff --git a/src/lib.rs b/src/lib.rs index 5c978f3..5b9bddb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -55,6 +55,8 @@ //! | `w` | Move forward to the start of a word | //! | `e` | Move forward to the end of a word | //! | `b` | Move backward to the start of a word | +//! | +d` | Jump a half page down | +//! | +u` | Jump a half page up | //! | `x` | Delete the character under the cursor | //! | `u`, `+r` | Undo/Redo last action | //! | `Esc` | Escape Visual mode |