update top/bottom keys to g/G

This commit is contained in:
Nathan Hemingway 2021-03-15 21:03:27 -07:00
parent be376376c9
commit 4e215b8900

View file

@ -38,8 +38,8 @@ impl Default for KeyConfig {
Self {
quit: Key::Char('q'),
refresh: Key::Char('r'),
go_to_bottom: Key::End,
go_to_top: Key::Home,
go_to_bottom: Key::Char('G'),
go_to_top: Key::Char('g'),
down: Key::Char('j'),
up: Key::Char('k'),
page_down: Key::Char('J'),