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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user