aboutsummaryrefslogtreecommitdiffstats
path: root/commands.js
diff options
context:
space:
mode:
authorNiklas Baumstark2012-01-23 12:57:32 +0100
committerNiklas Baumstark2012-04-10 23:54:37 +0200
commit9bab5a39e49c348c10941882395e68c0351a8a39 (patch)
treee1683b9bfc998719d31b7b768497958aa0895dc7 /commands.js
parent9890e1700f1348ac6284f185e296b8e4402ffa51 (diff)
downloadvimium-9bab5a39e49c348c10941882395e68c0351a8a39.tar.bz2
add special command for tab completion
Diffstat (limited to 'commands.js')
-rw-r--r--commands.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/commands.js b/commands.js
index 2cfd5cfa..727bf3c7 100644
--- a/commands.js
+++ b/commands.js
@@ -147,6 +147,8 @@ function clearKeyMappingsAndSetDefaults() {
"o": "fuzzyMode.activateAll",
"O": "fuzzyMode.activateAllNewTab",
+ "T": "fuzzyMode.activateTabs",
+
"gf": "nextFrame",
};
@@ -216,6 +218,7 @@ var commandDescriptions = {
'fuzzyMode.activateAll': ["Open URL, bookmark, history entry or a custom search (fuzzy)"],
'fuzzyMode.activateAllNewTab': ["Open URL, bookmark, history entry or a custom search (fuzzy, new tab)"],
+ 'fuzzyMode.activateTabs': ["Go to a tab in this window (fuzzy)"],
nextFrame: ["Cycle forward to the next frame on the page", { background: true, passCountToFunction: true }]
};
@@ -236,7 +239,7 @@ var commandGroups = {
"enterInsertMode", "focusInput",
"linkHints.activateMode", "linkHints.activateModeToOpenInNewTab", "linkHints.activateModeWithQueue",
"activateBookmarkFindMode", "activateBookmarkFindModeToOpenInNewTab",
- "fuzzyMode.activateAll", "fuzzyMode.activateAllNewTab",
+ "fuzzyMode.activateAll", "fuzzyMode.activateAllNewTab", "fuzzyMode.activateTabs",
"goPrevious", "goNext", "nextFrame"],
findCommands: ["enterFindMode", "performFind", "performBackwardsFind"],
historyNavigation: