1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 21:22:26 +01:00

add help bang Easter Egg

This commit is contained in:
Doug Kearns
2008-09-14 15:05:16 +00:00
parent b7cf04793f
commit 164bc044b3

View File

@@ -283,7 +283,16 @@ const liberator = (function () //{{{
liberator.commands.add(["h[elp]"],
"Display help",
function (args) { liberator.help(args); },
function (args, special)
{
if (special)
{
liberator.echoerr("E478: Don't panic!");
return;
}
liberator.help(args);
},
{
completer: function (filter) { return getHelpCompletions(filter); }
});