summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/keybind.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keybind.rs b/src/keybind.rs
index d6755d0..e9e0e22 100644
--- a/src/keybind.rs
+++ b/src/keybind.rs
@@ -634,8 +634,8 @@ impl Default for Bindings<Movement> {
let key = match action {
Up(_) => Key::Char('k'),
Down(_) => Key::Char('j'),
- Left => Key::Char('b'),
- Right => Key::Char('f'),
+ Left => Key::Char('h'),
+ Right => Key::Char('l'),
Top => Key::Char('<'),
Bottom => Key::Char('>'),
PageUp => Key::PageUp,