mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-08 18:44:12 +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",
|
"Show recently visited URLs",
|
||||||
function (args) { history.list(args.join(" "), args.bang, args["-max"], args["-sort"]); }, {
|
function (args) { history.list(args.join(" "), args.bang, args["-max"], args["-sort"]); }, {
|
||||||
bang: true,
|
bang: true,
|
||||||
completer: function (context) completion.history(context, args["-max"], args["-sort"]),
|
completer: function (context, args) completion.history(context, args["-max"], args["-sort"]),
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
names: ["-max", "-m"],
|
names: ["-max", "-m"],
|
||||||
|
|||||||
Reference in New Issue
Block a user