Skip to content

Commit

Permalink
Merge pull request #524 from amosbird/master
Browse files Browse the repository at this point in the history
Add `L` as vim mode's enter key.
  • Loading branch information
hluk committed Jun 26, 2016
2 parents 3997a15 + e2563b9 commit 1c8a48a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/common/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -630,6 +630,9 @@ bool handleViKey(QKeyEvent *event, QObject *eventReceiver)
case Qt::Key_K:
key = Qt::Key_Up;
break;
case Qt::Key_L:
key = Qt::Key_Return;
break;
case Qt::Key_F:
case Qt::Key_D:
case Qt::Key_B:
Expand Down

0 comments on commit 1c8a48a

Please sign in to comment.