forked from qt-creator/qt-creator
		
	fakevim: let the "IncSearch" option toggle between using the Creator
core Find dialog and the "old" minibuffer based search. A hot fix for the recent regression that 'n' and 'N' do not work and the positioning of the cursor after the search is wrong.
This commit is contained in:
		@@ -160,6 +160,12 @@ FakeVimSettings *theFakeVimSettings()
 | 
			
		||||
    item->setCheckable(true);
 | 
			
		||||
    instance->insertItem(ConfigAutoIndent, item, QLatin1String("autoindent"), QLatin1String("ai"));
 | 
			
		||||
 | 
			
		||||
    item = new SavedAction(instance);
 | 
			
		||||
    item->setDefaultValue(true);
 | 
			
		||||
    item->setSettingsKey(group, QLatin1String("IncSearch"));
 | 
			
		||||
    item->setCheckable(true);
 | 
			
		||||
    instance->insertItem(ConfigIncSearch, item, QLatin1String("incsearch"), QLatin1String("is"));
 | 
			
		||||
 | 
			
		||||
    item = new SavedAction(instance);
 | 
			
		||||
    item->setDefaultValue(QLatin1String("indent,eol,start"));
 | 
			
		||||
    item->setSettingsKey(group, QLatin1String("Backspace"));
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user