diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-07-18 22:26:09 -0400 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-07-18 22:26:09 -0400 |
commit | b1cd071812b96b53d770767fdda5a842e98b105a (patch) | |
tree | d6953ae3032e10b14e415051cbbac9e2995f9b0d /common | |
parent | dd7ea633e14b62a379573c343212d3d8535a3106 (diff) | |
download | pentadactyl-b1cd071812b96b53d770767fdda5a842e98b105a.tar.gz |
There's no such thing as QuickHint mode.
--HG--
extra : rebase_source : dbc3473171f085def22be3043c14f133b045b913
Diffstat (limited to 'common')
-rw-r--r-- | common/content/hints.js | 6 | ||||
-rw-r--r-- | common/locale/en-US/hints.xml | 18 |
2 files changed, 12 insertions, 12 deletions
diff --git a/common/content/hints.js b/common/content/hints.js index 7a8f09cc..49d86ba8 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -1168,7 +1168,7 @@ var Hints = Module("hints", { initModes.require("commandline"); modes.addMode("HINTS", { extended: true, - description: "Active when selecting elements in QuickHint or ExtendedHint mode", + description: "Active when selecting elements with hints", bases: [modes.COMMAND_LINE], input: true, ownsBuffer: true @@ -1177,11 +1177,11 @@ var Hints = Module("hints", { mappings: function () { var myModes = config.browserModes.concat(modes.OUTPUT_MULTILINE); mappings.add(myModes, ["f"], - "Start QuickHint mode", + "Start hint mode", function () { hints.show("o"); }); mappings.add(myModes, ["F"], - "Start QuickHint mode, but open link in a new tab", + "Start hint mode, but open link in a new tab", function () { hints.show(options.get("activate").has("links") ? "t" : "b"); }); mappings.add(myModes, [";"], diff --git a/common/locale/en-US/hints.xml b/common/locale/en-US/hints.xml index 68ce2f3a..223ac401 100644 --- a/common/locale/en-US/hints.xml +++ b/common/locale/en-US/hints.xml @@ -9,7 +9,7 @@ xmlns="&xmlns.dactyl;" xmlns:html="&xmlns.html;"> -<h1 tag="quick-hints hints">Hints</h1> +<h1 tag="hints">Hints</h1> <toc start="2"/> <p> @@ -25,20 +25,20 @@ </p> <item> - <tags>quick-hints</tags> - <tags>f QuickHint</tags> + <tags>quick-hints hint-mode</tags> + <tags>f</tags> <strut/> <spec>f<a>hint</a></spec> <description> <p> - Start <t>QuickHint</t> mode. In this mode, every clickable + Start <t>hint-mode</t>. In this mode, every clickable element (as defined by the <o>hinttags</o> option) is highlighted and numbered. Elements can be selected either by typing their number, or by typing part of their text to narrow down the result. When an element has been selected, it is automatically clicked and hint mode ends. Additionally, the following keys have - special meanings in QuickHint mode: + special meanings in hint mode: </p> <dl> <dt><k name="CR"/></dt> @@ -64,7 +64,7 @@ <spec>F<a>hint</a></spec> <description> <p> - Start <t>QuickHint</t> mode, but the selected elements + Start <t>hint-mode</t>, but the selected elements are clicked with the <k name="Shift" link="false"/> key pressed, which has the normal effect of opening it in a new tab (depending on the value of the @@ -75,13 +75,13 @@ <item> <tags>extended-hints</tags> - <tags>; ExtendedHint</tags> + <tags>;</tags> <strut/> <spec>;<a>mode</a><a>hint</a></spec> <description> <p> - Start an extended hint mode. <t>ExtendedHint</t> mode is exactly - like <t>QuickHint</t> mode, except that each sub-mode highlights a + Start an extended hint mode. Extended hints are exactly like + <t>quick-hints</t>, except that each sub-mode highlights a more specialized set of elements, and performs a unique action on the selected link. Because of the panoply of extended hint modes available, after pressing <k>;</k>, pressing <k name="Tab"/> brings |