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
c446f9ef
Commit
c446f9ef
authored
Feb 01, 2009
by
Martin Aumueller
Browse files
fakevim: dj/dk would not delete whole lines
parent
06dfd937
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/fakevim/fakevimhandler.cpp
View file @
c446f9ef
...
...
@@ -1004,7 +1004,9 @@ bool FakeVimHandler::Private::handleCommandMode(int key, int unmodified,
moveDown
(
count
());
moveToDesiredColumn
();
}
else
{
m_moveType
=
MoveLineWise
;
moveToStartOfLine
();
setAnchor
();
moveDown
(
count
()
+
1
);
}
finishMovement
();
...
...
@@ -1029,8 +1031,10 @@ bool FakeVimHandler::Private::handleCommandMode(int key, int unmodified,
moveUp
(
count
());
moveToDesiredColumn
();
}
else
{
m_moveType
=
MoveLineWise
;
moveToStartOfLine
();
moveDown
();
setAnchor
();
moveUp
(
count
()
+
1
);
}
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