diff options
| author | Phil Crosby | 2012-06-12 21:58:12 -0700 | 
|---|---|---|
| committer | Phil Crosby | 2012-06-12 22:00:35 -0700 | 
| commit | f22f2a92a225f5e40919cf50b9d15e8dd825b539 (patch) | |
| tree | 5dc6cf38e26aba6a377f72fd105ae1c12df4ea68 | |
| parent | 4886ca35c08639d148d15abf79b14b153c5a1ffa (diff) | |
| download | vimium-f22f2a92a225f5e40919cf50b9d15e8dd825b539.tar.bz2 | |
Upcase the vomnibar command name.
We'll want to revert this later, to divorce the name of the command from the implementation.
| -rw-r--r-- | background_scripts/commands.coffee | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 2b8022ef..4f6da9d8 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -91,7 +91,7 @@ Commands =         "openCopiedUrlInCurrentTab", "openCopiedUrlInNewTab", "goUp",         "enterInsertMode", "focusInput",         "LinkHints.activateMode", "LinkHints.activateModeToOpenInNewTab", "LinkHints.activateModeWithQueue", -       "vomnibar.activate", "vomnibar.activateWithCurrentUrl", "vomnibar.activateTabSelection", +       "Vomnibar.activate", "Vomnibar.activateWithCurrentUrl", "Vomnibar.activateTabSelection",         "goPrevious", "goNext", "nextFrame"]      findCommands: ["enterFindMode", "performFind", "performBackwardsFind"]      historyNavigation: @@ -163,10 +163,10 @@ defaultKeyMappings =    "x": "removeTab"    "X": "restoreTab" -  "o": "vomnibar.activate" -  "O": "vomnibar.activateWithCurrentUrl" +  "o": "Vomnibar.activate" +  "O": "Vomnibar.activateWithCurrentUrl" -  "T": "vomnibar.activateTabSelection" +  "T": "Vomnibar.activateTabSelection"    "gf": "nextFrame" @@ -228,9 +228,9 @@ commandDescriptions =    removeTab: ["Close current tab", { background: true }]    restoreTab: ["Restore closed tab", { background: true }] -  "vomnibar.activate": ["Open URL, bookmark, or history entry"] -  "vomnibar.activateWithCurrentUrl": ["Open URL, bookmark, history entry, starting with the current URL"] -  "vomnibar.activateTabSelection": ["Search through your open tabs"] +  "Vomnibar.activate": ["Open URL, bookmark, or history entry"] +  "Vomnibar.activateWithCurrentUrl": ["Open URL, bookmark, history entry, starting with the current URL"] +  "Vomnibar.activateTabSelection": ["Search through your open tabs"]    nextFrame: ["Cycle forward to the next frame on the page", { background: true, passCountToFunction: true }] | 
