diff --git a/content/commands.js b/content/commands.js index 5f554940..d32c467e 100644 --- a/content/commands.js +++ b/content/commands.js @@ -1116,7 +1116,7 @@ vimperator.Commands = function () //{{{ } )); commandManager.add(new vimperator.Command(["H[elp]"], - function (args, special, count, modifiers) { vimperator.Help((args || "introduction")); }, + function (args, special, count, modifiers) { vimperator.Help((args || "intro")); }, { shortHelp: "Temporary function, will replace :help at some time", completer: function (filter) { return vimperator.completion.Help(filter); } diff --git a/content/help.js b/content/help.js index f5869830..4bf4aa06 100644 --- a/content/help.js +++ b/content/help.js @@ -304,7 +304,7 @@ vimperator.Help = function(section) var elem = vimperator.buffer.getElement('@class="tag" and text()="' + tag + '"'); if (elem) window.content.scrollTo(0, elem.getBoundingClientRect().top - 10); // 10px context - }, 100); + }, 200); } var [, items] = vimperator.completion.Help();