1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 08:07:59 +01:00

Normalise mode name references in command/option/mapping descriptions.

--HG--
extra : rebase_source : e1de378b096c1292f237fcf45b1e6f926f7b6471
This commit is contained in:
Doug Kearns
2011-07-21 23:28:23 +10:00
parent 013408017e
commit bf186edf8f
6 changed files with 13 additions and 13 deletions

View File

@@ -1182,20 +1182,20 @@ var Hints = Module("hints", {
mappings: function () {
var myModes = config.browserModes.concat(modes.OUTPUT_MULTILINE);
mappings.add(myModes, ["f"],
"Start hint mode",
"Start HINTS mode",
function () { hints.show("o"); });
mappings.add(myModes, ["F"],
"Start hint mode, but open link in a new tab",
"Start HINTS mode, but open link in a new tab",
function () { hints.show(options.get("activate").has("links") ? "t" : "b"); });
mappings.add(myModes, [";"],
"Start an extended hint mode",
"Start an extended hints mode",
function ({ count }) { hints.open(";", { count: count }); },
{ count: true });
mappings.add(myModes, ["g;"],
"Start an extended hint mode and stay there until <Esc> is pressed",
"Start an extended hints mode and stay there until <Esc> is pressed",
function ({ count }) { hints.open("g;", { continue: true, count: count }); },
{ count: true });