Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
65638f7c
Commit
65638f7c
authored
Feb 09, 2009
by
hjk
Browse files
Fixes: fakevim: <Space> moves right now
Details: patch suggested by Bart van Deenen
parent
7e5bb9cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/fakevim/fakevimhandler.cpp
View file @
65638f7c
...
...
@@ -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
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment