diff options
Diffstat (limited to 'commands.js')
| -rw-r--r-- | commands.js | 9 | 
1 files changed, 1 insertions, 8 deletions
diff --git a/commands.js b/commands.js index b5d0a359..d4613c12 100644 --- a/commands.js +++ b/commands.js @@ -100,15 +100,8 @@ function clearKeyMappingsAndSetDefaults() {      "<c-e>": "scrollDown",      "<c-y>": "scrollUp", -    // scrollPageDown and scrollPageUp are mapped to two keys because they are very common actions so we -    // want them to be mapped without a modifier key, but we also want to be faithful to Vim convention which -    // has them on ctrl+D and ctrl+U.      "d": "scrollPageDown",      "u": "scrollPageUp", -    "<c-d>": "scrollPageDown", -    "<c-u>": "scrollPageUp", -    "<c-f>": "scrollFullPageDown", -    "<c-b>": "scrollFullPageUp",      "r": "reload",      "gs": "toggleViewSource", @@ -213,7 +206,7 @@ var commandDescriptions = {    activateBookmarkFindMode: ["Open a bookmark in the current tab"],    activateBookmarkFindModeToOpenInNewTab: ["Open a bookmark in a new tab"], -  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)  | 
