From 19e342bc3ab003c63a5587dc027e87db08683c17 Mon Sep 17 00:00:00 2001 From: Martin Stubenschrott Date: Mon, 19 Nov 2007 18:42:02 +0000 Subject: [PATCH] changed default next/prev patterns slightly --- content/options.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/options.js b/content/options.js index e419c922..fba06a92 100644 --- a/content/options.js +++ b/content/options.js @@ -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.
" + - "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.
" + - "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",