diff options
| author | Phil Crosby | 2012-05-23 09:11:48 -0700 | 
|---|---|---|
| committer | Phil Crosby | 2012-05-23 09:11:48 -0700 | 
| commit | 770e301a1455a823c30fa9d4bed41c109165949b (patch) | |
| tree | f997a90b03f6b2ac790a50138b3104ad367e564a | |
| parent | 9027303670297127d0655d912a32a88d83f1aca5 (diff) | |
| download | vimium-770e301a1455a823c30fa9d4bed41c109165949b.tar.bz2 | |
Fix #539: 'F' (Open a link in a new tab) no longer works
This was a regression introduced by e97088b3d552243e833496ff81992d3895afec0d.
Thanks holygeek for making the fix so easy.
| -rw-r--r-- | background_scripts/commands.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/background_scripts/commands.js b/background_scripts/commands.js index 83ef050f..c9061822 100644 --- a/background_scripts/commands.js +++ b/background_scripts/commands.js @@ -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.activateWithCurrentUrl': ["Open a link in a new tab"], +  'linkHints.activateModeToOpenInNewTab': ["Open a link in a new tab"],    'linkHints.activateModeWithQueue': ["Open multiple links in a new tab"],    enterFindMode: ["Enter find mode"], | 
