fakevim: properly handle ø in the minibuffer

This commit is contained in:
hjk
2010-04-15 13:54:35 +02:00
parent a51cf52430
commit be9c181680

View File

@@ -2432,7 +2432,7 @@ EventResult FakeVimHandler::Private::handleMiniBufferModes(const Input &input)
} else if (key == Key_Tab) {
m_commandBuffer += QChar(9);
updateMiniBuffer();
} else if (QChar(key).isPrint()) {
} else if (!input.text.isEmpty()) {
m_commandBuffer += input.text;
updateMiniBuffer();
} else {