Skip to content
Snippets Groups Projects
Commit 7d023ef1 authored by Thorbjørn Lindeijer's avatar Thorbjørn Lindeijer
Browse files

FakeVim: Text editor always does incremental search

When copying text editor settings, put incremental search on true.

Reviewed-by: hjk
parent 4d5b7325
No related branches found
No related tags found
No related merge requests found
...@@ -218,8 +218,7 @@ void FakeVimOptionPage::copyTextEditorSettings() ...@@ -218,8 +218,7 @@ void FakeVimOptionPage::copyTextEditorSettings()
m_ui.checkBoxSmartTab->setChecked(ts.m_smartBackspace); m_ui.checkBoxSmartTab->setChecked(ts.m_smartBackspace);
m_ui.checkBoxAutoIndent->setChecked(true); m_ui.checkBoxAutoIndent->setChecked(true);
m_ui.checkBoxSmartIndent->setChecked(ts.m_autoIndent); m_ui.checkBoxSmartIndent->setChecked(ts.m_autoIndent);
// FIXME: Not present in core m_ui.checkBoxIncSearch->setChecked(true);
//m_ui.checkBoxIncSearch->setChecked(ts.m_incSearch);
} }
void FakeVimOptionPage::setQtStyle() void FakeVimOptionPage::setQtStyle()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment