Skip to content

Commit cd697f4

Browse files
authored
feat(ui): add CTRL+N and ctrl+P keybinds (#113)
1 parent 1a91efc commit cd697f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,11 +253,11 @@ impl App {
253253

254254
match key.code {
255255
Char('c') => AppKeyAction::Stop,
256-
Char('j') => {
256+
Char('j' | 'n') => {
257257
self.next();
258258
AppKeyAction::Ok
259259
}
260-
Char('k') => {
260+
Char('k' | 'p') => {
261261
self.previous();
262262
AppKeyAction::Ok
263263
}

0 commit comments

Comments
 (0)