We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4804e2e commit 3eb26b6Copy full SHA for 3eb26b6
src/main.rs
@@ -298,8 +298,8 @@ fn handle_key(key: event::KeyEvent) -> Option<Message> {
298
KeyCode::Char('7') => Some(Message::MoveToIndex(6)),
299
KeyCode::Char('8') => Some(Message::MoveToIndex(7)),
300
KeyCode::Char('9') => Some(Message::MoveToIndex(8)),
301
- KeyCode::Char('j') => Some(Message::GoToNextItem),
302
- KeyCode::Char('k') => Some(Message::GoToPreviousPreview),
+ KeyCode::Char('j') | KeyCode::Down => Some(Message::GoToNextItem),
+ KeyCode::Char('k') | KeyCode::Up => Some(Message::GoToPreviousPreview),
303
KeyCode::Char('g') => Some(Message::GoToFirstItem),
304
KeyCode::Char('G') => Some(Message::GoToLastItem),
305
KeyCode::Char('J') => Some(Message::SwitchWithNextItem),
0 commit comments