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

More completion stuff.

This commit is contained in:
Kris Maglione
2008-11-23 23:40:40 +00:00
parent fef1cecb75
commit 7d8eb88954
15 changed files with 136 additions and 110 deletions

View File

@@ -354,7 +354,8 @@ function Tabs() //{{{
{
bang: true,
count: true,
completer: function (context) completion.buffer(context.filter)
completer: function (context) completion.buffer(context.filter),
literal: true
});
// TODO: this should open in a new tab positioned directly after the current one, not at the end
@@ -368,7 +369,8 @@ function Tabs() //{{{
},
{
argCount: "+",
completer: function (context) completion.ex(context.filter)
completer: function (context) completion.ex(context.filter),
literal: true
});
commands.add(["tabl[ast]", "bl[ast]"],
@@ -478,7 +480,8 @@ function Tabs() //{{{
{
bang: true,
count: true,
completer: function (context) completion.buffer(context.filter)
completer: function (context) completion.buffer(context.filter),
literal: true
});
commands.add(["buffers", "files", "ls", "tabs"],
@@ -548,7 +551,8 @@ function Tabs() //{{{
},
{
bang: true,
completer: function (context) completion.url(context)
completer: function (context) completion.url(context),
literal: true
});
commands.add(["tabde[tach]"],
@@ -634,7 +638,8 @@ function Tabs() //{{{
}
return [0, completions];
},
count: true
count: true,
literal: true
});
commands.add(["undoa[ll]"],