1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-13 20:45:46 +01:00

added :buffers [filter]

This commit is contained in:
Martin Stubenschrott
2008-11-02 05:13:34 +00:00
parent 70ea0eb34e
commit 7a697987bb
4 changed files with 9 additions and 5 deletions

View File

@@ -787,7 +787,7 @@ function Completion() //{{{
// FIXME: liberator.has("tabs")
let items = [];
let xml = <table/>
filter = filter || "";
filter = (filter || "").toLowerCase();
for (let [i, browser] in tabs.browsers)
{

View File

@@ -478,8 +478,8 @@ function Tabs() //{{{
commands.add(["buffers", "files", "ls", "tabs"],
"Show a list of all buffers",
function (args) { tabs.list(); },
{ argCount: "0" });
function (args) { tabs.list(args.string); },
{ argCount: "*" });
commands.add(["quita[ll]", "qa[ll]"],
"Quit " + config.name,