aboutsummaryrefslogtreecommitdiffstats
path: root/background_scripts/commands.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'background_scripts/commands.coffee')
-rw-r--r--background_scripts/commands.coffee10
1 files changed, 8 insertions, 2 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee
index e2211be1..628b7273 100644
--- a/background_scripts/commands.coffee
+++ b/background_scripts/commands.coffee
@@ -100,7 +100,7 @@ Commands =
["goBack", "goForward"]
tabManipulation:
["nextTab", "previousTab", "firstTab", "lastTab", "createTab", "duplicateTab", "removeTab",
- "restoreTab", "moveTabToNewWindow", "togglePinTab"]
+ "restoreTab", "moveTabToNewWindow", "togglePinTab", "moveTabLeft", "moveTabRight"]
misc:
["showHelp"]
@@ -111,7 +111,7 @@ Commands =
"scrollToLeft", "scrollToRight", "moveTabToNewWindow",
"goUp", "goToRoot", "focusInput", "LinkHints.activateModeWithQueue",
"LinkHints.activateModeToOpenIncognito", "goNext", "goPrevious", "Marks.activateCreateMode",
- "Marks.activateGotoMode"]
+ "Marks.activateGotoMode", "moveTabLeft", "moveTabRight"]
defaultKeyMappings =
"?": "showHelp"
@@ -164,6 +164,9 @@ defaultKeyMappings =
"g0": "firstTab"
"g$": "lastTab"
+ "Ml": "moveTabLeft"
+ "Mr": "moveTabRight"
+
"W": "moveTabToNewWindow"
"t": "createTab"
"yt": "duplicateTab"
@@ -250,6 +253,9 @@ commandDescriptions =
moveTabToNewWindow: ["Move tab to new window", { background: true }]
togglePinTab: ["Pin/unpin current tab", { background: true }]
+ moveTabLeft: ["Move tab to the left", { background: true }]
+ moveTabRight: ["Move tab to the right", { background: true }]
+
"Vomnibar.activate": ["Open URL, bookmark, or history entry"]
"Vomnibar.activateInNewTab": ["Open URL, bookmark, history entry, in a new tab"]
"Vomnibar.activateTabSelection": ["Search through your open tabs"]