diff options
| author | Ilya | 2012-08-06 17:23:37 -0700 |
|---|---|---|
| committer | Ilya | 2012-08-06 17:23:37 -0700 |
| commit | ea048f58130b01395f2de1ab46535b8bfbbe1aa0 (patch) | |
| tree | 86c849eeebca350f103ac3fdde66a23c463c70c6 /background_scripts/commands.coffee | |
| parent | a697646163a5ab9ec6096591b8184a29fa49f2e9 (diff) | |
| parent | 8c16dc36710fb9ba1934a5654bb559124db48044 (diff) | |
| download | vimium-ea048f58130b01395f2de1ab46535b8bfbbe1aa0.tar.bz2 | |
Merge pull request #610 from chelmertz/gh-594
vomnibar: New tabs for 'O' and 'B'
Diffstat (limited to 'background_scripts/commands.coffee')
| -rw-r--r-- | background_scripts/commands.coffee | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 0fa56e1a..e3001f4f 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -91,8 +91,8 @@ Commands = "openCopiedUrlInCurrentTab", "openCopiedUrlInNewTab", "goUp", "enterInsertMode", "focusInput", "LinkHints.activateMode", "LinkHints.activateModeToOpenInNewTab", "LinkHints.activateModeWithQueue", - "Vomnibar.activate", "Vomnibar.activateWithCurrentUrl", "Vomnibar.activateTabSelection", - "Vomnibar.activateBookmarks", + "Vomnibar.activate", "Vomnibar.activateInNewTab", "Vomnibar.activateTabSelection", + "Vomnibar.activateBookmarks", "Vomnibar.activateBookmarksInNewTab", "goPrevious", "goNext", "nextFrame"] findCommands: ["enterFindMode", "performFind", "performBackwardsFind"] historyNavigation: @@ -165,11 +165,12 @@ defaultKeyMappings = "X": "restoreTab" "o": "Vomnibar.activate" - "O": "Vomnibar.activateWithCurrentUrl" + "O": "Vomnibar.activateInNewTab" "T": "Vomnibar.activateTabSelection" "b": "Vomnibar.activateBookmarks" + "B": "Vomnibar.activateBookmarksInNewTab" "gf": "nextFrame" @@ -232,9 +233,10 @@ commandDescriptions = restoreTab: ["Restore closed tab", { background: true }] "Vomnibar.activate": ["Open URL, bookmark, or history entry"] - "Vomnibar.activateWithCurrentUrl": ["Open URL, bookmark, history entry, starting with the current URL"] + "Vomnibar.activateInNewTab": ["Open URL, bookmark, history entry, in a new tab"] "Vomnibar.activateTabSelection": ["Search through your open tabs"] "Vomnibar.activateBookmarks": ["Open a bookmark"] + "Vomnibar.activateBookmarksInNewTab": ["Open a bookmark in a new tab"] nextFrame: ["Cycle forward to the next frame on the page", { background: true, passCountToFunction: true }] |
