diff options
| author | Ilya Sukhar | 2010-09-24 00:53:04 -0700 | 
|---|---|---|
| committer | Ilya Sukhar | 2010-09-24 00:53:04 -0700 | 
| commit | 6e959935f94355bfe55dee808abd7ecc9fd42c66 (patch) | |
| tree | 69553a211cc0d44e5693c7c69a5a86b3cd10e76f /commands.js | |
| parent | 331e1f6197ab4ff74868bec2b93740272bae92e8 (diff) | |
| download | vimium-6e959935f94355bfe55dee808abd7ecc9fd42c66.tar.bz2 | |
Code cleanup & README changes for the multiple link hints patch.
Diffstat (limited to 'commands.js')
| -rw-r--r-- | commands.js | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/commands.js b/commands.js index a952ae91..46a52632 100644 --- a/commands.js +++ b/commands.js @@ -110,9 +110,9 @@ function clearKeyMappingsAndSetDefaults() {    mapKeyToCommand('gi', 'focusInput'); -  mapKeyToCommand('f', 'activateLinkHintsMode'); -  mapKeyToCommand('F', 'activateLinkHintsModeToOpenInNewTab'); -  mapKeyToCommand('q', 'activeteLinkHintsModeWithQueue'); +  mapKeyToCommand('f',     'activateLinkHintsMode'); +  mapKeyToCommand('F',     'activateLinkHintsModeToOpenInNewTab'); +  mapKeyToCommand('<a-f>', 'activateLinkHintsModeWithQueue');    mapKeyToCommand('/', 'enterFindMode');    mapKeyToCommand('n', 'performFind'); @@ -159,7 +159,7 @@ addCommand('focusInput',          'Focus the first (or n-th) text box on the pag  addCommand('activateLinkHintsMode',               'Enter link hints mode to open links in current tab');  addCommand('activateLinkHintsModeToOpenInNewTab', 'Enter link hints mode to open links in new tab'); -addCommand('activeteLinkHintsModeWithQueue',      'Enter link hints mode to open multiple links in a new tab'); +addCommand('activateLinkHintsModeWithQueue',      'Enter link hints mode to open multiple links in a new tab');  addCommand('enterFindMode',        'Enter find mode');  addCommand('performFind',          'Cycle forward to the next find match'); @@ -191,7 +191,7 @@ var commandGroups = {       "scrollPageUp", "scrollFullPageDown",       "reload", "toggleViewSource", "zoomIn", "zoomOut", "copyCurrentUrl", "goUp",       "enterInsertMode", "focusInput", -     "activateLinkHintsMode", "activateLinkHintsModeToOpenInNewTab", "activeteLinkHintsModeWithQueue", +     "activateLinkHintsMode", "activateLinkHintsModeToOpenInNewTab", "activateLinkHintsModeWithQueue",       "enterFindMode", "performFind", "performBackwardsFind", "nextFrame"],    historyNavigation:      ["goBack", "goForward"],  | 
