diff options
| author | Stephen Blott | 2015-09-17 06:55:41 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-09-17 06:55:41 +0100 |
| commit | b2ddd07b9f5c0db014b7283b910ffcfc64219850 (patch) | |
| tree | aea54feedced86f60ba0b3fc0f64c5d4373fcf6e /background_scripts/commands.coffee | |
| parent | 00f7fcdb2dedcaef34c498c862c403b28fdf9c88 (diff) | |
| parent | 38b24c8a09f2d56d833172fcb7e67ac320117b41 (diff) | |
| download | vimium-b2ddd07b9f5c0db014b7283b910ffcfc64219850.tar.bz2 | |
Merge pull request #1828 from smblott-github/add-count-for-g0-and-g$
Add <count> prefix for g0 and g$.
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 64ec36be..a0b17ebc 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -309,8 +309,8 @@ commandDescriptions = # Manipulating tabs 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 }] + firstTab: ["Go to the first tab", { background: true, passCountToFunction: true }] + lastTab: ["Go to the last tab", { background: true, passCountToFunction: true }] createTab: ["Create new tab", { background: true, repeatLimit: 20 }] duplicateTab: ["Duplicate current tab", { background: true, repeatLimit: 20 }] |
