1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-24 02:02:27 +01:00

Fix some option descriptions so they're properly help linkified.

This commit is contained in:
Doug Kearns
2011-07-05 14:59:39 +10:00
parent ab9e3cadd4
commit 905c571b31
4 changed files with 6 additions and 8 deletions

View File

@@ -1240,7 +1240,7 @@ var Hints = Module("hints", {
}); });
options.add(["hinttags", "ht"], options.add(["hinttags", "ht"],
"XPath string of hintable elements activated by 'f' and 'F'", "XPath or CSS selector strings of hintable elements for hint mode",
"stringlist", "input:not([type=hidden]),a[href],area,iframe,textarea,button,select," + "stringlist", "input:not([type=hidden]),a[href],area,iframe,textarea,button,select," +
"[onclick],[onmouseover],[onmousedown],[onmouseup],[oncommand]," + "[onclick],[onmouseover],[onmousedown],[onmouseup],[oncommand]," +
"[tabindex],[role=link],[role=button],[contenteditable=true]", "[tabindex],[role=link],[role=button],[contenteditable=true]",
@@ -1273,9 +1273,7 @@ var Hints = Module("hints", {
{ validator: function (value) value >= 0 }); { validator: function (value) value >= 0 });
options.add(["followhints", "fh"], options.add(["followhints", "fh"],
// FIXME: this description isn't very clear but I can't think of a "Define the conditions under which selected hints are followed",
// better one right now.
"Change the behavior of <Return> in hint mode",
"number", 0, "number", 0,
{ {
values: { values: {

View File

@@ -719,7 +719,7 @@
<type>&option.followhints.type;</type> <type>&option.followhints.type;</type>
<default>&option.followhints.default;</default> <default>&option.followhints.default;</default>
<description> <description>
<p>Changes how soon matching hints are followed in Hints mode.</p> <p>Define the conditions under which selected hints are followed.</p>
<p>Possible values:</p> <p>Possible values:</p>

View File

@@ -1044,7 +1044,7 @@ var Completion = Module("completion", {
}; };
options.add(["altwildmode", "awim"], options.add(["altwildmode", "awim"],
"Define the behavior of the <A-Tab> key in command-line completion", "Define the behavior of the c_<A-Tab> key in command-line completion",
"stringlist", "list:full", "stringlist", "list:full",
wildmode); wildmode);
@@ -1073,7 +1073,7 @@ var Completion = Module("completion", {
}); });
options.add(["wildmode", "wim"], options.add(["wildmode", "wim"],
"Define the behavior of the <Tab> key in command-line completion", "Define the behavior of the c_<Tab> key in command-line completion",
"stringlist", "list:full", "stringlist", "list:full",
wildmode); wildmode);

View File

@@ -280,7 +280,7 @@ var RangeFinder = Module("rangefinder", {
}); });
options.add(["incfind", "if"], options.add(["incfind", "if"],
"Find a pattern incrementally as it is typed rather than awaiting <Return>", "Find a pattern incrementally as it is typed rather than awaiting c_<Return>",
"boolean", true); "boolean", true);
} }
}); });