diff options
| author | Phil Crosby | 2012-05-05 19:11:40 -0700 |
|---|---|---|
| committer | Phil Crosby | 2012-05-05 19:11:40 -0700 |
| commit | e97088b3d552243e833496ff81992d3895afec0d (patch) | |
| tree | 717cb5024e1ce655c7506c41a225e6ab8a5691f9 /commands.js | |
| parent | 07179da4731a17eba827fd289992c8499ea46939 (diff) | |
| download | vimium-e97088b3d552243e833496ff81992d3895afec0d.tar.bz2 | |
Have "O" activate teh vomnibox with the current URL. Completes #521.
Diffstat (limited to 'commands.js')
| -rw-r--r-- | commands.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/commands.js b/commands.js index 269deb14..9f8a4d92 100644 --- a/commands.js +++ b/commands.js @@ -141,10 +141,10 @@ function clearKeyMappingsAndSetDefaults() { "x": "removeTab", "X": "restoreTab", - "o": "fuzzyMode.activateAll", - "O": "fuzzyMode.activateAllNewTab", + "o": "fuzzyMode.activate", + "O": "fuzzyMode.activateWithCurrentUrl", - "T": "fuzzyMode.activateTabs", + "T": "fuzzyMode.activateTabSelection", "gf": "nextFrame", }; @@ -184,7 +184,7 @@ var commandDescriptions = { focusInput: ["Focus the first (or n-th) text box on the page", { passCountToFunction: true }], 'linkHints.activateMode': ["Open a link in the current tab"], - 'linkHints.activateModeToOpenInNewTab': ["Open a link in a new tab"], + 'linkHints.activateWithCurrentUrl': ["Open a link in a new tab"], 'linkHints.activateModeWithQueue': ["Open multiple links in a new tab"], enterFindMode: ["Enter find mode"], @@ -210,9 +210,9 @@ var commandDescriptions = { removeTab: ["Close current tab", { background: true }], restoreTab: ["Restore closed tab", { background: true }], - 'fuzzyMode.activateAll': ["Open URL, bookmark, history entry or a custom search (fuzzy)"], - 'fuzzyMode.activateAllNewTab': ["Open URL, bookmark, history entry or a custom search (fuzzy, new tab)"], - 'fuzzyMode.activateTabs': ["Go to a tab in this window (fuzzy)"], + "fuzzyMode.activate": ["Open URL, bookmark, or history entry"], + "fuzzyMode.activateWithCurrentUrl": ["Open URL, bookmark, history entry, starting with the current URL"], + "fuzzyMode.activateTabSelection": ["Search through your open tabs"], nextFrame: ["Cycle forward to the next frame on the page", { background: true, passCountToFunction: true }] }; |
