1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-23 20:05:53 +01:00

move some completion code to completion.js

This commit is contained in:
Doug Kearns
2008-10-07 15:32:48 +00:00
parent d0a7df74bc
commit 01e89bc6d8
8 changed files with 329 additions and 320 deletions

View File

@@ -127,7 +127,7 @@ liberator.AutoCommands = function () //{{{
},
{
bang: true,
completer: function (filter) liberator.completion.autocommand(filter)
completer: function (filter) liberator.completion.event(filter)
});
// TODO: expand target to all buffers
@@ -139,7 +139,7 @@ liberator.AutoCommands = function () //{{{
},
{
argCount: "+",
completer: function (filter) liberator.completion.autocommand(filter)
completer: function (filter) liberator.completion.event(filter)
}
);
@@ -175,7 +175,7 @@ liberator.AutoCommands = function () //{{{
{
// TODO: Vim actually just displays "No matching autocommands" when no arg is specified
argCount: "+",
completer: function (filter) liberator.completion.autocommand(filter)
completer: function (filter) liberator.completion.event(filter)
}
);