aboutsummaryrefslogtreecommitdiffstats
path: root/commands.js
diff options
context:
space:
mode:
Diffstat (limited to 'commands.js')
-rw-r--r--commands.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/commands.js b/commands.js
index 46a52632..fb264510 100644
--- a/commands.js
+++ b/commands.js
@@ -129,7 +129,11 @@ function clearKeyMappingsAndSetDefaults() {
mapKeyToCommand('d', 'removeTab');
mapKeyToCommand('u', 'restoreTab');
+ mapKeyToCommand('b', 'activateBookmarkFindMode');
+ mapKeyToCommand('B', 'activateBookmarkFindModeToOpenInNewTab')
+
mapKeyToCommand('gf', 'nextFrame');
+
}
// Navigating the current page:
@@ -161,6 +165,9 @@ addCommand('activateLinkHintsMode', 'Enter link hints mode to open
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('activateBookmarkFindMode', 'Find bookmarks to open in current tab');
+addCommand('activateBookmarkFindModeToOpenInNewTab', 'Find bookmarks to open in new tab');
+
addCommand('enterFindMode', 'Enter find mode');
addCommand('performFind', 'Cycle forward to the next find match');
addCommand('performBackwardsFind', 'Cycle backward to the previous find match');
@@ -198,5 +205,5 @@ var commandGroups = {
tabManipulation:
["nextTab", "previousTab", "createTab", "removeTab", "restoreTab"],
misc:
- ["showHelp"]
+ ["showHelp", "activateBookmarkFindMode", "activateBookmarkFindModeToOpenInNewTab"]
};