mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 15:27:58 +01:00
Normalise the standard completer signatures to fn(context, args, ...).
This also fixes a number of the :command completers. --HG-- extra : rebase_source : 588a9b5a163ba3882c89d0716f292ef9658297f6
This commit is contained in:
@@ -218,7 +218,7 @@ const History = Module("history", {
|
||||
].slice(2);
|
||||
};
|
||||
|
||||
completion.history = function _history(context, maxItems) {
|
||||
completion.history = function _history(context, args, maxItems) {
|
||||
context.format = history.format;
|
||||
context.title = ["History"];
|
||||
context.compare = CompletionContext.Sort.unsorted;
|
||||
|
||||
Reference in New Issue
Block a user