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
01932534
Commit
01932534
authored
Jan 28, 2009
by
hjk
Browse files
Fixes: fakevim: fix cW
parent
3e103278
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/fakevim/fakevimhandler.cpp
View file @
01932534
...
...
@@ -1101,7 +1101,13 @@ bool FakeVimHandler::Private::handleCommandMode(int key, int unmodified,
}
finishMovement
(
"w"
);
}
else
if
(
key
==
'W'
)
{
moveToNextWord
(
true
);
if
(
m_submode
==
ChangeSubMode
)
{
moveToWordBoundary
(
true
,
true
);
m_moveType
=
MoveInclusive
;
}
else
{
moveToNextWord
(
true
);
m_moveType
=
MoveExclusive
;
}
finishMovement
(
"W"
);
}
else
if
(
key
==
'x'
)
{
// = "dl"
m_moveType
=
MoveExclusive
;
...
...
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