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
18fcfeb1
Commit
18fcfeb1
authored
Apr 27, 2010
by
hjk
Browse files
fakevim: potential fix for QTCREATORBUG-1263
parent
ac41af36
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/fakevim/fakevimhandler.cpp
View file @
18fcfeb1
...
...
@@ -1410,9 +1410,10 @@ EventResult FakeVimHandler::Private::handleCommandSubSubMode(const Input &input)
EventResult
FakeVimHandler
::
Private
::
handleCommandMode
(
const
Input
&
input
)
{
const
int
key
=
input
.
key
;
//
const int key
0
= input.key;
const
int
unmodified
=
input
.
unmodified
;
const
QString
&
text
=
input
.
text
;
const
int
key
=
(
text
.
size
()
==
1
?
text
.
at
(
0
).
unicode
()
:
input
.
key
);
EventResult
handled
=
EventHandled
;
...
...
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