diff options
| author | Stephen Blott | 2015-05-30 11:14:35 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2015-05-30 11:14:35 +0100 | 
| commit | 91d21ab80e8a83ebc6aa03379f5bfad867cf1ea9 (patch) | |
| tree | 0c7833aedbb93293c240c8859a63ee561dd57d6e | |
| parent | 95f0df630783274b686ee530816a842565413cf2 (diff) | |
| download | vimium-91d21ab80e8a83ebc6aa03379f5bfad867cf1ea9.tar.bz2 | |
Move Vomnibar commands to own category on help page.
The help page gets pretty lopsided when advanced commands are shown.  This balances things out a bit by creating a new category for Vomnibar commands in the right-hand column.
| -rw-r--r-- | background_scripts/commands.coffee | 15 | ||||
| -rw-r--r-- | pages/help_dialog.html | 2 | 
2 files changed, 10 insertions, 7 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 5857665c..63e9c718 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -121,19 +121,20 @@ Commands =        "LinkHints.activateModeWithQueue",        "LinkHints.activateModeToDownloadLink",        "LinkHints.activateModeToOpenIncognito", -      "Vomnibar.activate", -      "Vomnibar.activateInNewTab", -      "Vomnibar.activateTabSelection", -      "Vomnibar.activateBookmarks", -      "Vomnibar.activateBookmarksInNewTab",        "goPrevious",        "goNext",        "nextFrame",        "mainFrame",        "Marks.activateCreateMode", -      "Vomnibar.activateEditUrl", -      "Vomnibar.activateEditUrlInNewTab",        "Marks.activateGotoMode"] +    vomnibarCommands: +      ["Vomnibar.activate", +      "Vomnibar.activateInNewTab", +      "Vomnibar.activateTabSelection", +      "Vomnibar.activateBookmarks", +      "Vomnibar.activateBookmarksInNewTab", +      "Vomnibar.activateEditUrl", +      "Vomnibar.activateEditUrlInNewTab"]      findCommands: ["enterFindMode", "performFind", "performBackwardsFind"]      historyNavigation:        ["goBack", "goForward"] diff --git a/pages/help_dialog.html b/pages/help_dialog.html index 77c3e2bf..44464b81 100644 --- a/pages/help_dialog.html +++ b/pages/help_dialog.html @@ -20,6 +20,8 @@    <div class="vimiumReset vimiumColumn">      <table class="vimiumReset" >        <tbody class="vimiumReset"> +      <tr class="vimiumReset" ><td class="vimiumReset" ></td><td class="vimiumReset" ></td><td class="vimiumReset vimiumHelpSectionTitle">Using the vomnibar</td></tr> +      {{vomnibarCommands}}        <tr class="vimiumReset" ><td class="vimiumReset" ></td><td class="vimiumReset" ></td><td class="vimiumReset vimiumHelpSectionTitle">Using find</td></tr>        {{findCommands}}        <tr class="vimiumReset" ><td class="vimiumReset" ></td><td class="vimiumReset" ></td><td class="vimiumReset vimiumHelpSectionTitle">Navigating history</td></tr> | 
