From 247aadbd6fadf57bf169e5d1beae30eee1895d61 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Tue, 4 Sep 2007 11:30:09 +0000 Subject: [PATCH] Made all new search options true by default, sorry Doug. --- chrome/content/vimperator/options.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chrome/content/vimperator/options.js b/chrome/content/vimperator/options.js index ce395378..4186612b 100644 --- a/chrome/content/vimperator/options.js +++ b/chrome/content/vimperator/options.js @@ -429,19 +429,19 @@ function Options() //{{{ { short_help: "Highlight previous search pattern matches", setter: function(value) { if (value) vimperator.search.highlight(); else vimperator.search.clear(); }, - default_value: false + default_value: true } )); addOption(new Option(["ignorecase", "ic"], "boolean", { short_help: "Ignore case in search patterns", - default_value: false + default_value: true } )); addOption(new Option(["incsearch", "is"], "boolean", { short_help: "Show where the search pattern matches as it is typed", - default_value: false + default_value: true } )); addOption(new Option(["maxhints", "mh"], "number",