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

Dont use argCount with literal. Use the default favicon in :ls

This commit is contained in:
Kris Maglione
2008-11-28 12:52:09 +00:00
parent 8a69d2f3a1
commit d25867e7b5
14 changed files with 45 additions and 73 deletions

View File

@@ -347,7 +347,7 @@ function Tabs() //{{{
bang: true,
count: true,
completer: function (context) completion.buffer(context),
literal: true
literal: 0
});
// TODO: this should open in a new tab positioned directly after the current one, not at the end
@@ -362,7 +362,7 @@ function Tabs() //{{{
{
argCount: "+",
completer: function (context) completion.ex(context.filter),
literal: true
literal: 0
});
commands.add(["tabl[ast]", "bl[ast]"],
@@ -477,7 +477,7 @@ function Tabs() //{{{
bang: true,
count: true,
completer: function (context) completion.buffer(context),
literal: true
literal: 0
});
commands.add(["buffers", "files", "ls", "tabs"],
@@ -485,7 +485,7 @@ function Tabs() //{{{
function (args) { tabs.list(args.literalArg); },
{
argCount: "?",
literal: true
literal: 0
});
commands.add(["quita[ll]", "qa[ll]"],
@@ -550,7 +550,7 @@ function Tabs() //{{{
{
bang: true,
completer: function (context) completion.url(context),
literal: true
literal: 0
});
commands.add(["tabde[tach]"],
@@ -635,7 +635,7 @@ function Tabs() //{{{
return [0, completions];
},
count: true,
literal: true
literal: 0
});
commands.add(["undoa[ll]"],