aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Crosby2011-01-30 02:15:26 -0800
committerPhil Crosby2011-01-30 02:15:26 -0800
commit83fee9f86c90b06df78465264850e91e6a94e9b5 (patch)
tree3d2a177ea872e828b05aeb630f649d760205a8cc
parentae73ad02e936f66bb894fca5da13a631bcd14d31 (diff)
downloadvimium-83fee9f86c90b06df78465264850e91e6a94e9b5.tar.bz2
Tighten up the layout of the help dialog
-rw-r--r--README.markdown6
-rw-r--r--commands.js10
-rw-r--r--helpDialog.html2
3 files changed, 10 insertions, 8 deletions
diff --git a/README.markdown b/README.markdown
index b710fe4b..80cf450b 100644
--- a/README.markdown
+++ b/README.markdown
@@ -36,9 +36,9 @@ Navigating the current page:
<c-b> scroll up a full page
zH scroll all the way left
zL scroll all the way right
- f activate link hints mode to open in current tab
- F activate link hints mode to open in new tab
- <a-f> activate link hints mode to open multiple links in a new tab
+ f open a link in the current tab
+ F open a link in a new tab
+ <a-f> open multiple links in a new tab
r reload
gs view source
zi zoom in
diff --git a/commands.js b/commands.js
index d7066bd1..66263905 100644
--- a/commands.js
+++ b/commands.js
@@ -176,9 +176,9 @@ var commandDescriptions = {
focusInput: ["Focus the first (or n-th) text box on the page", { passCountToFunction: true }],
- activateLinkHintsMode: ["Enter link hints mode to open links in current tab"],
- activateLinkHintsModeToOpenInNewTab: ["Enter link hints mode to open links in new tab"],
- activateLinkHintsModeWithQueue: ["Enter link hints mode to open multiple links in a new tab"],
+ activateLinkHintsMode: ["Open a link in the current tab"],
+ activateLinkHintsModeToOpenInNewTab: ["Open a link in a new tab"],
+ activateLinkHintsModeWithQueue: ["Open multiple links in a new tab"],
enterFindMode: ["Enter find mode"],
performFind: ["Cycle forward to the next find match"],
@@ -218,8 +218,8 @@ var commandGroups = {
"reload", "toggleViewSource", "zoomIn", "zoomOut", "zoomReset", "copyCurrentUrl", "goUp",
"enterInsertMode", "focusInput",
"activateLinkHintsMode", "activateLinkHintsModeToOpenInNewTab", "activateLinkHintsModeWithQueue",
- "goPrevious", "goNext",
- "enterFindMode", "performFind", "performBackwardsFind", "nextFrame"],
+ "goPrevious", "goNext", "nextFrame"],
+ findCommands: ["enterFindMode", "performFind", "performBackwardsFind"],
historyNavigation:
["goBack", "goForward"],
tabManipulation:
diff --git a/helpDialog.html b/helpDialog.html
index dac1fb56..c21c8b7b 100644
--- a/helpDialog.html
+++ b/helpDialog.html
@@ -102,6 +102,8 @@
</div>
<div class="vimiumColumn">
<table>
+ <tr><td></td><td></td><td class="vimiumHelpSectionTitle">Using find</td></tr>
+ {{findCommands}}
<tr><td></td><td></td><td class="vimiumHelpSectionTitle">Navigating history</td></tr>
{{historyNavigation}}
<tr><td></td><td></td><td class="vimiumHelpSectionTitle">Manipulating tabs</td></tr>