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:
@@ -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"],
|
||||
|
||||
Reference in New Issue
Block a user