1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 20:37:58 +01:00

Fix minor issues in last commit.

This commit is contained in:
Kris Maglione
2010-12-15 04:16:17 -05:00
parent 512a82023f
commit 097309f28c

View File

@@ -772,7 +772,7 @@ lookup:
if (!match[4]) { if (!match[4]) {
context.key = match[2]; context.key = match[2];
context.advance(match[2].length); context.advance(match[2].length);
context.generate = function () util.chromePackages.map(function (p) [p, match[1] + p + "/"]); context.generate = function () util.chromePackages.map(function (p) [p, match[2] + p + "/"]);
} }
else if (match[3] === "chrome") { else if (match[3] === "chrome") {
context.key = match[1]; context.key = match[1];
@@ -784,7 +784,8 @@ lookup:
}); });
} }
} }
else if (/^(\.{0,2}|~)\/|^file:/.test(context.filter) || util.getFile(context.filter) || io.isJarURL(context.filter)) if (!match || match[3] === "resource" && match[4])
if (/^(\.{0,2}|~)\/|^file:/.test(context.filter) || util.getFile(context.filter) || io.isJarURL(context.filter))
completion.file(context, full); completion.file(context, full);
}); });
}, },