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
6f85959d
Commit
6f85959d
authored
Apr 17, 2009
by
hjk
Browse files
fakevim: eat Ctrl-A to prevent the global "select all" shortcut to trigger
parent
02d0ede3
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/fakevim/fakevimhandler.cpp
View file @
6f85959d
...
...
@@ -1096,6 +1096,8 @@ EventResult FakeVimHandler::Private::handleCommandMode(int key, int unmodified,
m_mode
=
InsertMode
;
moveToEndOfLine
();
m_lastInsertion
.
clear
();
}
else
if
(
key
==
control
(
'a'
))
{
// FIXME: eat it to prevent the global "select all" shortcut to trigger
}
else
if
(
key
==
'b'
)
{
m_moveType
=
MoveExclusive
;
moveToWordBoundary
(
false
,
false
);
...
...
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