diff options
| author | Ilya | 2011-05-06 11:02:39 -0700 | 
|---|---|---|
| committer | Ilya | 2011-05-06 11:02:39 -0700 | 
| commit | 9fa550086afb0e3bb944721f0422f60ec50b69b7 (patch) | |
| tree | 6d3b50850bb0e0a3401ec0a7f2d0e2994c7a9474 /commands.js | |
| parent | b6261a10dd10f7b864b849e49c5cf1e5c02a2134 (diff) | |
| parent | 870183f4b2e755a9e4ae58194d1cd5d03579980b (diff) | |
| download | vimium-9fa550086afb0e3bb944721f0422f60ec50b69b7.tar.bz2 | |
Merge pull request #341 from mcantor/master
Make "gf" (nextFrame) work with count given (eg. 2gf)
Diffstat (limited to 'commands.js')
| -rw-r--r-- | commands.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/commands.js b/commands.js index be01a180..c360729b 100644 --- a/commands.js +++ b/commands.js @@ -200,7 +200,7 @@ var commandDescriptions = {    removeTab: ["Close current tab", { background: true }],    restoreTab: ["Restore closed tab", { background: true }], -  nextFrame: ["Cycle forward to the next frame on the page", { background: true }] +  nextFrame: ["Cycle forward to the next frame on the page", { background: true, passCountToFunction: true }]  };  for (var command in commandDescriptions) | 
