diff options
| author | Stephen Blott | 2016-02-20 12:10:55 +0000 |
|---|---|---|
| committer | Stephen Blott | 2016-02-20 12:10:55 +0000 |
| commit | 85c3fd9a6b5a22703195738b101bf17b24c8fba9 (patch) | |
| tree | edf9f70ea0e7a6b36db1b46e3501e61372311de7 /background_scripts/commands.coffee | |
| parent | 2debf3e07ecc41e8d0c3c186f4d8ae39641426f4 (diff) | |
| parent | 1795d5a50531f7d090375ea6078ad6e0d59830fe (diff) | |
| download | vimium-85c3fd9a6b5a22703195738b101bf17b24c8fba9.tar.bz2 | |
Merge pull request #2003 from smblott-github/count-for-new-window
Make `moveToNewWindow` accept a count.
Diffstat (limited to 'background_scripts/commands.coffee')
| -rw-r--r-- | background_scripts/commands.coffee | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index d251c7ed..01eecd81 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -344,7 +344,7 @@ commandDescriptions = (if chrome.session then chrome.session.MAX_SESSION_RESULTS else 25) }] restoreTab: ["Restore closed tab", { background: true, repeatLimit: 20 }] - moveTabToNewWindow: ["Move tab to new window", { background: true }] + moveTabToNewWindow: ["Move tab to new window", { background: true, passCountToFunction: true }] togglePinTab: ["Pin/unpin current tab", { background: true }] closeTabsOnLeft: ["Close tabs on the left", {background: true, noRepeat: true}] |
