1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 15:48:00 +01:00

changed default next/prev patterns slightly

This commit is contained in:
Martin Stubenschrott
2007-11-19 18:42:02 +00:00
parent af66013a1d
commit 19e342bc3a

View File

@@ -605,8 +605,8 @@ vimperator.Options = function () //{{{
{
shortHelp: "Patterns to use when guessing the 'next' page in a document sequence",
help: "Each pattern, in order, is matched against all links in the page with the first match being used.<br/>" +
"The patterns are case insensitive.",
defaultValue: "\\bnext,^>$"
"The patterns are case insensitive regular expressions.",
defaultValue: "\\bnext,^>$,^>>$"
}
));
optionManager.add(new vimperator.Option(["pageinfo", "pa"], "charlist",
@@ -662,8 +662,8 @@ vimperator.Options = function () //{{{
{
shortHelp: "Patterns to use when guessing the 'previous' page in a document sequence",
help: "Each pattern, in order, is matched against all links in the page with the first match being used.<br/>" +
"The patterns are case insensitive.",
defaultValue: "\\bprev,previous\\b,^<$"
"The patterns are case insensitive regular expressions.",
defaultValue: "\\bprev|previous\\b,^<$,^<<$"
}
));
optionManager.add(new vimperator.Option(["scroll", "scr"], "number",