Skip to content

Commit

Permalink
Enable UP/DOWN movement through completions using arrow keys
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoliaw committed Nov 27, 2017
1 parent af91e80 commit a5bbaf6
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4222,9 +4222,11 @@ protected boolean doMenu(List<Candidate> original, String completed) {
menuSupport.previous();
break;
case UP_LINE_OR_HISTORY:
case UP_LINE_OR_SEARCH:
menuSupport.up();
break;
case DOWN_LINE_OR_HISTORY:
case DOWN_LINE_OR_SEARCH:
menuSupport.down();
break;
case FORWARD_CHAR:
Expand Down

0 comments on commit a5bbaf6

Please sign in to comment.