From 7d023ef115ef2b56a682f94097be4adc0cf45e3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= <thorbjorn.lindeijer@nokia.com> Date: Mon, 12 Apr 2010 17:54:07 +0200 Subject: [PATCH] FakeVim: Text editor always does incremental search When copying text editor settings, put incremental search on true. Reviewed-by: hjk --- src/plugins/fakevim/fakevimplugin.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/fakevim/fakevimplugin.cpp b/src/plugins/fakevim/fakevimplugin.cpp index 1f8300e5658..c90cd5cca01 100644 --- a/src/plugins/fakevim/fakevimplugin.cpp +++ b/src/plugins/fakevim/fakevimplugin.cpp @@ -218,8 +218,7 @@ void FakeVimOptionPage::copyTextEditorSettings() m_ui.checkBoxSmartTab->setChecked(ts.m_smartBackspace); m_ui.checkBoxAutoIndent->setChecked(true); m_ui.checkBoxSmartIndent->setChecked(ts.m_autoIndent); - // FIXME: Not present in core - //m_ui.checkBoxIncSearch->setChecked(ts.m_incSearch); + m_ui.checkBoxIncSearch->setChecked(true); } void FakeVimOptionPage::setQtStyle() -- GitLab