Skip to content

Commit

Permalink
Tidy up merge
Browse files Browse the repository at this point in the history
  • Loading branch information
int3 committed Jan 31, 2011
1 parent 7d07dbf commit d31aa9f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions commands.js
Expand Up @@ -146,6 +146,9 @@ function clearKeyMappingsAndSetDefaults() {
"x": "removeTab",
"X": "restoreTab",

"b": "activateBookmarkFindMode",
"B": "activateBookmarkFindModeToOpenInNewTab",

"gf": "nextFrame"
};

Expand Down Expand Up @@ -207,6 +210,9 @@ var commandDescriptions = {
removeTab: ["Close current tab", { background: true }],
restoreTab: ["Restore closed tab", { background: true }],

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 }]
};

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Expand Up @@ -9,7 +9,7 @@
"options_page": "options.html",
"permissions": [
"tabs",
"bookmarks",
"bookmarks",
"http://*/*",
"https://*/*"
],
Expand Down
1 change: 0 additions & 1 deletion vimiumFrontend.js
Expand Up @@ -266,7 +266,6 @@ function scrollFullPageDown() { window.scrollBy(0, window.innerHeight); }
function scrollLeft() { window.scrollBy(-1 * settings.get("scrollStepSize"), 0); }
function scrollRight() { window.scrollBy(settings.get("scrollStepSize"), 0); }


function focusInput(count) {
var results = document.evaluate(textInputXPath,
document.documentElement, null,
Expand Down

0 comments on commit d31aa9f

Please sign in to comment.