diff --git a/content/liberator.js b/content/liberator.js index fc29b288..451793dd 100644 --- a/content/liberator.js +++ b/content/liberator.js @@ -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); } });