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

Fix file completion

This commit is contained in:
Kris Maglione
2008-10-28 01:27:19 +00:00
parent c8d40f21f0
commit 2b63cd6a11

View File

@@ -929,7 +929,7 @@ function Completion() //{{{
if (tail)
return [dir.length, this.cached("file-" + dir, compl, generate, "filter", [true])];
else
return [0, this.cached("file", filter, generate, "filter", [true])];
return [0, this.cached("file-" + dir, filter, generate, "filter", [true])];
}
catch (e)
{