Skip to content

Commit

Permalink
Add up/down as default keymaps for scroll_up/scroll_down
Browse files Browse the repository at this point in the history
Signed-off-by: tippfehlr <[email protected]>
  • Loading branch information
tippfehlr committed Dec 11, 2024
1 parent 7de9862 commit df3223b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,8 @@ impl Config {
},
bindings: Keybindings {
global: GlobalKeybindings {
scroll_down: keybinding!([KeyCode::Char('j');]),
scroll_up: keybinding!([KeyCode::Char('k');]),
scroll_down: keybinding!([KeyCode::Char('j');, KeyCode::Down;]),
scroll_up: keybinding!([KeyCode::Char('k');, KeyCode::Up;]),

scroll_to_top: keybinding!([KeyCode::Char('g');, KeyCode::Home;]),
scroll_to_bottom: keybinding!([KeyCode::Char('G'); SHIFT, KeyCode::End;]),
Expand Down

0 comments on commit df3223b

Please sign in to comment.