diff options
| author | Phil Crosby | 2014-08-17 11:15:40 -0700 | 
|---|---|---|
| committer | Phil Crosby | 2014-08-17 11:15:40 -0700 | 
| commit | 081c4946a301a32438ce18e4af6da01b3150057d (patch) | |
| tree | 450180a7b3d7a9bdad2f1758d19a65d999d6df07 | |
| parent | 64d4ecbf1985afa4fd9d6adec10d66b51f1f4d7f (diff) | |
| download | vimium-081c4946a301a32438ce18e4af6da01b3150057d.tar.bz2 | |
Mark the close tab commands as "advanced"
| -rw-r--r-- | background_scripts/commands.coffee | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index b9586888..2ab6813e 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -112,7 +112,8 @@ Commands =      "scrollToLeft", "scrollToRight", "moveTabToNewWindow",      "goUp", "goToRoot", "focusInput", "LinkHints.activateModeWithQueue",      "LinkHints.activateModeToOpenIncognito", "goNext", "goPrevious", "Marks.activateCreateMode", -    "Marks.activateGotoMode", "moveTabLeft", "moveTabRight"] +    "Marks.activateGotoMode", "moveTabLeft", "moveTabRight", +    "closeTabsToLeft","closeTabsToRight", "closeOtherTabs"]  defaultKeyMappings =    "?": "showHelp" @@ -256,7 +257,7 @@ commandDescriptions =    closeTabsToLeft: ["Close tabs to the left", {background: true, noRepeat: true}]    closeTabsToRight: ["Close tabs to the right", {background: true, noRepeat: true}] -  closeOtherTabs: ["Close other tabs", {background: true, noRepeat: true}] +  closeOtherTabs: ["Close all other tabs", {background: true, noRepeat: true}]    moveTabLeft: ["Move tab to the left", { background: true, passCountToFunction: true }]    moveTabRight: ["Move tab to the right", { background: true, passCountToFunction: true  }]  | 
