aboutsummaryrefslogtreecommitdiffstats
path: root/commands.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands.js')
-rw-r--r--commands.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/commands.js b/commands.js
index 3b9203dc..ec35c569 100644
--- a/commands.js
+++ b/commands.js
@@ -110,9 +110,9 @@ function clearKeyMappingsAndSetDefaults() {
mapKeyToCommand('gi', 'focusInput');
- mapKeyToCommand('f', 'activateLinkHintsMode');
- mapKeyToCommand('F', 'activateLinkHintsModeToOpenInNewTab');
- mapKeyToCommand('<a-f>', 'activateLinkHintsModeWithQueue');
+ mapKeyToCommand('f', 'linkHints.activateMode');
+ mapKeyToCommand('F', 'linkHints.activateModeToOpenInNewTab');
+ mapKeyToCommand('<a-f>', 'linkHints.activateModeWithQueue');
mapKeyToCommand('/', 'enterFindMode');
mapKeyToCommand('n', 'performFind');
@@ -157,9 +157,9 @@ addCommand('enterInsertMode', 'Enter insert mode');
addCommand('focusInput', 'Focus the first (or n-th) text box on the page', false, true);
-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('activateLinkHintsModeWithQueue', 'Enter link hints mode to open multiple links in a new tab');
+addCommand('linkHints.activateMode', 'Enter link hints mode to open links in current tab');
+addCommand('linkHints.activateModeToOpenInNewTab', 'Enter link hints mode to open links in new tab');
+addCommand('linkHints.activateModeWithQueue', '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", "scrollFullPageUp", "scrollFullPageDown",
"reload", "toggleViewSource", "zoomIn", "zoomOut", "copyCurrentUrl", "goUp",
"enterInsertMode", "focusInput",
- "activateLinkHintsMode", "activateLinkHintsModeToOpenInNewTab", "activateLinkHintsModeWithQueue",
+ "linkHints.activateMode", "linkHints.activateModeToOpenInNewTab", "linkHints.activateModeWithQueue",
"enterFindMode", "performFind", "performBackwardsFind", "nextFrame"],
historyNavigation:
["goBack", "goForward"],