aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/commands.coffee
diff options
context:
space:
mode:
authorPhil Crosby2014-08-17 11:15:40 -0700
committerPhil Crosby2014-08-17 11:15:40 -0700
commit081c4946a301a32438ce18e4af6da01b3150057d (patch)
tree450180a7b3d7a9bdad2f1758d19a65d999d6df07 /background_scripts/commands.coffee
parent64d4ecbf1985afa4fd9d6adec10d66b51f1f4d7f (diff)
downloadvimium-081c4946a301a32438ce18e4af6da01b3150057d.tar.bz2
Mark the close tab commands as "advanced"
Diffstat (limited to 'background_scripts/commands.coffee')
-rw-r--r--background_scripts/commands.coffee5
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 }]