diff options
| author | Stephen Blott | 2015-05-27 14:47:57 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-05-27 14:47:57 +0100 |
| commit | 594abdc59db60e942e03086b4a66d7c4e1e5ab66 (patch) | |
| tree | 9ea173a4d4ec649e09f3b078fa7de447fbfd40c2 /background_scripts/commands.coffee | |
| parent | 1e236a21373f667f8fd1cec07df4b647b2b30e1c (diff) | |
| parent | f16c7f270563cc79a7d7280d5a91ababc3be6965 (diff) | |
| download | vimium-594abdc59db60e942e03086b4a66d7c4e1e5ab66.tar.bz2 | |
Merge pull request #1689 from smblott-github/direct-next-previous-tab
Go directly to next/previous tab.
Diffstat (limited to 'background_scripts/commands.coffee')
| -rw-r--r-- | background_scripts/commands.coffee | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index bca1c3a4..abfbd9e2 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -321,8 +321,8 @@ commandDescriptions = goToRoot: ["Go to root of current URL hierarchy", { passCountToFunction: true }] # Manipulating tabs - nextTab: ["Go one tab right", { background: true }] - previousTab: ["Go one tab left", { background: true }] + nextTab: ["Go one tab right", { background: true, passCountToFunction: true }] + previousTab: ["Go one tab left", { background: true, passCountToFunction: true }] firstTab: ["Go to the first tab", { background: true }] lastTab: ["Go to the last tab", { background: true }] |
