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:
@@ -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)
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user