add incsearch option to choose if incremental search is enabled
This commit is contained in:
parent
76c3246642
commit
d5582b0df4
|
@ -155,6 +155,8 @@ void do_search(Context& context)
|
||||||
RegisterManager::instance()['/'] = ex;
|
RegisterManager::instance()['/'] = ex;
|
||||||
context.push_jump();
|
context.push_jump();
|
||||||
}
|
}
|
||||||
|
else if (not context.options()["incsearch"].as_int())
|
||||||
|
return;
|
||||||
|
|
||||||
context.editor().select(std::bind(select_next_match, _1, ex), mode);
|
context.editor().select(std::bind(select_next_match, _1, ex), mode);
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,6 +99,7 @@ GlobalOptions::GlobalOptions()
|
||||||
set_option("BOM", Option("no"));
|
set_option("BOM", Option("no"));
|
||||||
set_option("shell", Option("sh"));
|
set_option("shell", Option("sh"));
|
||||||
set_option("complete_prefix", Option(1));
|
set_option("complete_prefix", Option(1));
|
||||||
|
set_option("incsearch", Option(1));
|
||||||
set_option("ignored_files", Option(R"(^(\..*|.*\.(o|so|a))$)"));
|
set_option("ignored_files", Option(R"(^(\..*|.*\.(o|so|a))$)"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user