Fixes: fakevim/editorview: move the 'minibuffer' to the bottom of the

editor
This commit is contained in:
hjk
2009-03-05 12:30:10 +01:00
parent 9d70760955
commit 2deb735367
5 changed files with 94 additions and 11 deletions

View File

@@ -357,12 +357,14 @@ void FakeVimPluginPrivate::editorAboutToClose(Core::IEditor *editor)
void FakeVimPluginPrivate::showCommandBuffer(const QString &contents)
{
//qDebug() << "SHOW COMMAND BUFFER" << contents;
FakeVimHandler *handler = qobject_cast<FakeVimHandler *>(sender());
if (handler) {
Core::EditorManager::instance()->showEditorInfoBar(
//qDebug() << "SHOW COMMAND BUFFER" << contents;
Core::EditorManager::instance()->showEditorStatusBar(
QLatin1String(Constants::MINI_BUFFER), contents,
tr("Quit FakeVim"), handler, SLOT(quit()));
} else {
qDebug() << "\nNO HANDLER\n";
}
}