forked from qt-creator/qt-creator
Fixes: fakevim: <Space> moves right now
Details: patch suggested by Bart van Deenen
This commit is contained in:
@@ -1027,7 +1027,7 @@ bool FakeVimHandler::Private::handleCommandMode(int key, int unmodified,
|
||||
}
|
||||
finishMovement();
|
||||
m_desiredColumn = savedColumn;
|
||||
} else if (key == 'l' || key == Key_Right) {
|
||||
} else if (key == 'l' || key == Key_Right || key == ' ') {
|
||||
m_moveType = MoveExclusive;
|
||||
moveRight(qMin(count(), rightDist()));
|
||||
finishMovement();
|
||||
|
Reference in New Issue
Block a user