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
Tobias Hunger
qt-creator
Commits
408b533d
Commit
408b533d
authored
Mar 16, 2009
by
hjk
Browse files
Fixes: fakevim: implement 'x' and 'd' in (character) visual mode
parent
a10d60a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/fakevim/fakevimhandler.cpp
View file @
408b533d
...
...
@@ -1053,7 +1053,12 @@ EventResult FakeVimHandler::Private::handleCommandMode(int key, int unmodified,
m_opcount
=
m_mvcount
;
m_mvcount
.
clear
();
m_submode
=
DeleteSubMode
;
}
else
if
((
key
==
'd'
||
key
==
'x'
)
&&
m_visualMode
==
VisualLineMode
)
{
}
else
if
((
key
==
'd'
||
key
==
'x'
)
&&
m_visualMode
==
VisualCharMode
)
{
recordBeginGroup
();
leaveVisualMode
();
m_submode
=
DeleteSubMode
;
finishMovement
();
}
else
if
((
key
==
'd'
||
key
==
'x'
)
&&
m_visualMode
==
VisualLineMode
)
{
leaveVisualMode
();
int
beginLine
=
lineForPosition
(
m_marks
[
'<'
]);
int
endLine
=
lineForPosition
(
m_marks
[
'>'
]);
...
...
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