1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 03:52:26 +01:00

Made all new search options true by default, sorry Doug.

This commit is contained in:
Martin Stubenschrott
2007-09-04 11:30:09 +00:00
parent 78fd430086
commit 247aadbd6f

View File

@@ -429,19 +429,19 @@ function Options() //{{{
{ {
short_help: "Highlight previous search pattern matches", short_help: "Highlight previous search pattern matches",
setter: function(value) { if (value) vimperator.search.highlight(); else vimperator.search.clear(); }, setter: function(value) { if (value) vimperator.search.highlight(); else vimperator.search.clear(); },
default_value: false default_value: true
} }
)); ));
addOption(new Option(["ignorecase", "ic"], "boolean", addOption(new Option(["ignorecase", "ic"], "boolean",
{ {
short_help: "Ignore case in search patterns", short_help: "Ignore case in search patterns",
default_value: false default_value: true
} }
)); ));
addOption(new Option(["incsearch", "is"], "boolean", addOption(new Option(["incsearch", "is"], "boolean",
{ {
short_help: "Show where the search pattern matches as it is typed", short_help: "Show where the search pattern matches as it is typed",
default_value: false default_value: true
} }
)); ));
addOption(new Option(["maxhints", "mh"], "number", addOption(new Option(["maxhints", "mh"], "number",