summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2019-07-29 18:21:19 +0200
committerrabite <rabite@posteo.de>2019-07-29 18:21:19 +0200
commit199643a259598f91b2ade036ca1861f5e06cd51d (patch)
treeb75d06dbe042c596daedea6dae99e8e0448a43a5
parent474a7fd7e71af1a668284ac72ca485b8dd996e4e (diff)
fix default left/right movement binding
-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,