1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-29 05:52:27 +01:00

add the 'smartcase' option and support for \c and \C in search patterns

This commit is contained in:
Doug Kearns
2007-09-05 11:32:46 +00:00
parent 62ede9f92e
commit 88749df4bb
5 changed files with 76 additions and 22 deletions

View File

@@ -511,6 +511,13 @@ function Options() //{{{
validator: function (value) { if (value >= 0 && value <= 2) return true; else return false; }
}
));
addOption(new Option(["smartcase", "scs"], "boolean",
{
short_help: "Override the 'ignorecase' option if the pattern contains uppercase characters",
help: "This is only used if the <code class=\"option\">'ignorecase'</code> option is set.",
default_value: false
}
));
addOption(new Option(["titlestring"], "string",
{
short_help: "Change the title of the browser window",