From 4e215b8900bada865ebb2f6973d78828f9291761 Mon Sep 17 00:00:00 2001 From: Nathan Hemingway Date: Mon, 15 Mar 2021 21:03:27 -0700 Subject: [PATCH] update top/bottom keys to g/G --- src/keyconfig.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keyconfig.rs b/src/keyconfig.rs index faccad6..1eaa337 100644 --- a/src/keyconfig.rs +++ b/src/keyconfig.rs @@ -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'),