mirror of https://github.com/bobwen-dev/hunter
fix default left/right movement binding
This commit is contained in:
parent
474a7fd7e7
commit
199643a259
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue