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

Fix buffer completion

This commit is contained in:
Kris Maglione
2008-11-26 08:15:01 +00:00
parent 78d700fd91
commit 3a85f642e2
4 changed files with 7 additions and 37 deletions

View File

@@ -955,12 +955,12 @@ function Buffer() //{{{
switch (relationship)
{
case "next":
regexps = options["nextpattern"].split(",");
regexps = options.get("nextpattern").values;
revString = "previous";
break;
case "previous":
// TODO: accept prev\%[ious]
regexps = options["previouspattern"].split(",");
regexps = options.get("previouspattern").values;
revString = "next";
break;
default: