aboutsummaryrefslogtreecommitdiffstats
path: root/commands.js
diff options
context:
space:
mode:
authorabe2010-09-22 01:38:54 +0200
committerabe2010-09-22 01:38:54 +0200
commit4473dafcb82103572810cb501ca8bce56ca93c5e (patch)
treecdab3178231cd80225e550f0ffc5f23cbc42cacd /commands.js
parent0d15a8fbdf78ab1a12783406bf678339882323a5 (diff)
downloadvimium-4473dafcb82103572810cb501ca8bce56ca93c5e.tar.bz2
Added activeteLinkHintsModeWithQueue and resetLinkHintsMode to linkHints.js and added 'q cmd' and 'q help cmd' to commands.js
Diffstat (limited to 'commands.js')
-rw-r--r--commands.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/commands.js b/commands.js
index a9fa0aba..01f7735c 100644
--- a/commands.js
+++ b/commands.js
@@ -112,6 +112,7 @@ function clearKeyMappingsAndSetDefaults() {
mapKeyToCommand('f', 'activateLinkHintsMode');
mapKeyToCommand('F', 'activateLinkHintsModeToOpenInNewTab');
+ mapKeyToCommand('q', 'activeteLinkHintsModeWithQueue');
mapKeyToCommand('/', 'enterFindMode');
mapKeyToCommand('n', 'performFind');
@@ -156,6 +157,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('enterFindMode', 'Enter find mode');
addCommand('performFind', 'Cycle forward to the next find match');
@@ -185,7 +187,7 @@ var commandGroups = {
"scrollPageUp", "scrollFullPageDown",
"reload", "toggleViewSource", "zoomIn", "zoomOut", "copyCurrentUrl", "goUp",
"enterInsertMode", "focusInput",
- "activateLinkHintsMode", "activateLinkHintsModeToOpenInNewTab",
+ "activateLinkHintsMode", "activateLinkHintsModeToOpenInNewTab", "activeteLinkHintsModeWithQueue",
"enterFindMode", "performFind", "performBackwardsFind"],
historyNavigation:
["goBack", "goForward"],