forked from qt-creator/qt-creator
fakevim: properly handle ø in the minibuffer
This commit is contained in:
@@ -2432,7 +2432,7 @@ EventResult FakeVimHandler::Private::handleMiniBufferModes(const Input &input)
|
|||||||
} else if (key == Key_Tab) {
|
} else if (key == Key_Tab) {
|
||||||
m_commandBuffer += QChar(9);
|
m_commandBuffer += QChar(9);
|
||||||
updateMiniBuffer();
|
updateMiniBuffer();
|
||||||
} else if (QChar(key).isPrint()) {
|
} else if (!input.text.isEmpty()) {
|
||||||
m_commandBuffer += input.text;
|
m_commandBuffer += input.text;
|
||||||
updateMiniBuffer();
|
updateMiniBuffer();
|
||||||
} else {
|
} else {
|
||||||
|
Reference in New Issue
Block a user