From 28ae00de3efdadfe4035f2ffc4df1ab118092876 Mon Sep 17 00:00:00 2001
From: Philipp Reiter
Date: Wed, 25 Dec 2024 14:23:10 +0100
Subject: [PATCH] Extend readme
---
README.md | 2 ++
src/lib.rs | 2 ++
2 files changed, 4 insertions(+)
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 |