diff options
| author | Ilya | 2011-10-19 13:02:08 -0700 |
|---|---|---|
| committer | Ilya | 2011-10-19 13:02:08 -0700 |
| commit | 4d9622ecf41f9c0e15cf7f3f84c39d1cf7370e92 (patch) | |
| tree | a2a06a1d6f82a593de40bc7689f2455467f84460 /commands.js | |
| parent | 04ce1512b62981004134e177c134d4cd029b99e8 (diff) | |
| parent | cbc7f4d0edd96efd8690257f25cc1b56749f3894 (diff) | |
| download | vimium-4d9622ecf41f9c0e15cf7f3f84c39d1cf7370e92.tar.bz2 | |
Merge pull request #395 from dgl/countnav
Use count if provided in back/forward navigation
Diffstat (limited to 'commands.js')
| -rw-r--r-- | commands.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands.js b/commands.js index 894818a2..f36c57b3 100644 --- a/commands.js +++ b/commands.js @@ -186,8 +186,8 @@ var commandDescriptions = { goNext: ["Follow the link labeled next or >"], // Navigating your history - goBack: ["Go back in history"], - goForward: ["Go forward in history"], + goBack: ["Go back in history", { passCountToFunction: true }], + goForward: ["Go forward in history", { passCountToFunction: true }], // Navigating the URL hierarchy goUp: ["Go up the URL hierarchy", { passCountToFunction: true }], |
