diff options
| author | Timo Sand | 2013-03-07 05:32:06 +0000 | 
|---|---|---|
| committer | Timo Sand | 2014-05-09 10:11:14 +0300 | 
| commit | 85406049e7048081f004ad8b01c8ec3818ed1974 (patch) | |
| tree | 616330043653f266a3c5c491ca9f35f6efff333e | |
| parent | 2741021d2967866e5d5b2d8bc9673b44a99e4e61 (diff) | |
| download | vimium-85406049e7048081f004ad8b01c8ec3818ed1974.tar.bz2 | |
Fixed repetion and unmapped command
| -rw-r--r-- | background_scripts/commands.coffee | 7 | 
1 files changed, 2 insertions, 5 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 628b7273..282474ab 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -164,9 +164,6 @@ defaultKeyMappings =    "g0": "firstTab"    "g$": "lastTab" -  "Ml": "moveTabLeft" -  "Mr": "moveTabRight" -    "W": "moveTabToNewWindow"    "t": "createTab"    "yt": "duplicateTab" @@ -253,8 +250,8 @@ 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 }] +  moveTabLeft: ["Move tab to the left", { background: true, passCountToFunction: true }] +  moveTabRight: ["Move tab to the right", { background: true, passCountToFunction: true  }]    "Vomnibar.activate": ["Open URL, bookmark, or history entry"]    "Vomnibar.activateInNewTab": ["Open URL, bookmark, history entry, in a new tab"] | 
