diff options
| author | Stephen Blott | 2016-03-01 13:13:08 +0000 | 
|---|---|---|
| committer | Stephen Blott | 2016-03-05 05:40:11 +0000 | 
| commit | 201451d94edefa8c873d417f5f6190d993204b5e (patch) | |
| tree | ea92cc27965758a611c505d1ac1660a5ef485083 /background_scripts/commands.coffee | |
| parent | ff6d4b92df924b93de4366b1f0e3cc7411ac8065 (diff) | |
| download | vimium-201451d94edefa8c873d417f5f6190d993204b5e.tar.bz2 | |
Key bindings; move Vomnibar commands back to content scripts.
Diffstat (limited to 'background_scripts/commands.coffee')
| -rw-r--r-- | background_scripts/commands.coffee | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 25acdc03..4dbcd1cd 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -381,13 +381,13 @@ commandDescriptions =    moveTabRight: ["Move tab to the right", { background: true, passCountToFunction: true  }]    # These are background-page commands because all requests go via the background page. -  "Vomnibar.activate": ["Open URL, bookmark, or history entry", { background: true, noRepeat: true }] -  "Vomnibar.activateInNewTab": ["Open URL, bookmark, history entry, in a new tab", { background: true, noRepeat: true }] -  "Vomnibar.activateTabSelection": ["Search through your open tabs", { background: true, noRepeat: true }] -  "Vomnibar.activateBookmarks": ["Open a bookmark", { background: true, noRepeat: true }] -  "Vomnibar.activateBookmarksInNewTab": ["Open a bookmark in a new tab", { background: true, noRepeat: true }] -  "Vomnibar.activateEditUrl": ["Edit the current URL", { background: true, noRepeat: true }] -  "Vomnibar.activateEditUrlInNewTab": ["Edit the current URL and open in a new tab", { background: true, noRepeat: true }] +  "Vomnibar.activate": ["Open URL, bookmark, or history entry", { noRepeat: true }] +  "Vomnibar.activateInNewTab": ["Open URL, bookmark, history entry, in a new tab", { noRepeat: true }] +  "Vomnibar.activateTabSelection": ["Search through your open tabs", { noRepeat: true }] +  "Vomnibar.activateBookmarks": ["Open a bookmark", { noRepeat: true }] +  "Vomnibar.activateBookmarksInNewTab": ["Open a bookmark in a new tab", { noRepeat: true }] +  "Vomnibar.activateEditUrl": ["Edit the current URL", { noRepeat: true }] +  "Vomnibar.activateEditUrlInNewTab": ["Edit the current URL and open in a new tab", { noRepeat: true }]    nextFrame: ["Cycle forward to the next frame on the page", { background: true, passCountToFunction: true }]    mainFrame: ["Select the tab's main/top frame", { background: true, noRepeat: true }] | 
