1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 21:54:13 +01:00

Fix :history completion bug from last commit.

This commit is contained in:
Kris Maglione
2010-12-22 22:23:04 -05:00
parent 2b016d2e6a
commit 2b0048061c

View File

@@ -205,7 +205,7 @@ const History = Module("history", {
"Show recently visited URLs",
function (args) { history.list(args.join(" "), args.bang, args["-max"], args["-sort"]); }, {
bang: true,
completer: function (context) completion.history(context, args["-max"], args["-sort"]),
completer: function (context, args) completion.history(context, args["-max"], args["-sort"]),
options: [
{
names: ["-max", "-m"],