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 /background_scripts | |
| 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.
Diffstat (limited to 'background_scripts')
| -rw-r--r-- | background_scripts/commands.coffee | 15 | 
1 files changed, 8 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"] | 
