fix default left/right movement binding

This commit is contained in:
rabite 2019-07-29 18:21:19 +02:00
parent 474a7fd7e7
commit 199643a259
1 changed files with 2 additions and 2 deletions

View File

@ -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,