Skip to content

Commit

Permalink
feat: add control-n and control-p
Browse files Browse the repository at this point in the history
  • Loading branch information
goldjacobe committed Oct 2, 2023
1 parent 7c16709 commit 459e37b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/util/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ module.exports = (key, isSelect) => {
if (key.name === 'd') return 'abort';
if (key.name === 'e') return 'last';
if (key.name === 'g') return 'reset';
if (key.name === 'n') return 'down';
if (key.name === 'p') return 'up';
}

if (isSelect) {
Expand Down

0 comments on commit 459e37b

Please sign in to comment.