diff options
| author | Timo Sand | 2013-02-18 09:59:11 +0000 |
|---|---|---|
| committer | Timo Sand | 2013-02-18 09:59:11 +0000 |
| commit | 5f8d7647d63e22ed530ef818d312941b9b0b677c (patch) | |
| tree | b29747bcdbe38292d8594b91ae98a26bf1e4b79b | |
| parent | b406848c2b0605b0765ef12b1469e20e47080a64 (diff) | |
| download | vimium-5f8d7647d63e22ed530ef818d312941b9b0b677c.tar.bz2 | |
Moved to advanced commands and renamed command for clearness
| -rw-r--r-- | background_scripts/commands.coffee | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 92d2a40d..dd9a938c 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -98,7 +98,7 @@ Commands = historyNavigation: ["goBack", "goForward"] tabManipulation: - ["nextTab", "previousTab", "firstTab", "lastTab", "createTab", "openTabInNewWindow", "removeTab", "restoreTab"] + ["nextTab", "previousTab", "firstTab", "lastTab", "createTab", "removeTab", "restoreTab"] misc: ["showHelp"] @@ -106,7 +106,7 @@ Commands = # a focused, high-signal set of commands to the new and casual user. Only those truly hungry for more power # from Vimium will uncover these gems. advancedCommands: [ - "scrollToLeft", "scrollToRight", + "scrollToLeft", "scrollToRight", "moveTabToNewWindow", "goUp", "focusInput", "LinkHints.activateModeWithQueue", "goPrevious", "goNext", "Marks.activateCreateMode", "Marks.activateGotoMode"] @@ -160,7 +160,7 @@ defaultKeyMappings = "g0": "firstTab" "g$": "lastTab" - "w": "openTabInNewWindow" + "w": "moveTabToNewWindow" "t": "createTab" "x": "removeTab" "X": "restoreTab" @@ -233,9 +233,9 @@ commandDescriptions = firstTab: ["Go to the first tab", { background: true }] lastTab: ["Go to the last tab", { background: true }] createTab: ["Create new tab", { background: true }] - openTabInNewWindow: ["Open tab in new window", { background: true }] removeTab: ["Close current tab", { background: true }] restoreTab: ["Restore closed tab", { background: true }] + moveTabToNewWindow: ["Move tab to new window", { background: true }] "Vomnibar.activate": ["Open URL, bookmark, or history entry"] "Vomnibar.activateInNewTab": ["Open URL, bookmark, history entry, in a new tab"] |
