diff options
| author | Stephen Blott | 2016-09-24 09:05:29 +0100 | 
|---|---|---|
| committer | Stephen Blott | 2016-09-24 09:05:29 +0100 | 
| commit | a75e99c1a4a2ca327bf46dbf78b5ce973f3fe082 (patch) | |
| tree | 638d401680e15474fe5f0b9f1552371d8bfaca79 | |
| parent | cfca5794e4073baacb9b3d4a6b0ce21d6587fd34 (diff) | |
| download | vimium-a75e99c1a4a2ca327bf46dbf78b5ce973f3fe082.tar.bz2 | |
Tweak #2269 (toggleMuteTab).
| -rw-r--r-- | CREDITS | 1 | ||||
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | background_scripts/commands.coffee | 4 | 
3 files changed, 5 insertions, 4 deletions
| @@ -47,5 +47,6 @@ Contributors:    Dahan Gong <gdh1995@qq.com> (github: gdh1995)    Scott Pinkelman <scott@scottpinkelman.com> (github: sco-tt)    Darryl Pogue <darryl@dpogue.ca> (github: dpogue) +  tobimensch  Feel free to add real names in addition to GitHub usernames. @@ -81,7 +81,6 @@ Manipulating tabs:      X       restore closed tab (i.e. unwind the 'x' command)      T       search through your open tabs      <a-p>   pin/unpin current tab -    <a-m>   mute/unmute current tab  Using marks: @@ -162,7 +161,8 @@ Release Notes  Changes since previous release (not in the Chrome Store version) -- New commands: "mute/unmute tab". +- New commands: +    - `toggleMuteTab` - mute or unmute the current tab (default binding `<a-m>`).  - You can now map `<backspace>` to a Vimium command (e.g. `map <backspace> goBack`).  - Bug fixes:      - `<c-a-[>` is no longer handled (incorrectly) as `Escape`.  This also affects `<Alt-Gr-[>`. diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 6f7122dd..e905c410 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -364,8 +364,8 @@ commandDescriptions =    restoreTab: ["Restore closed tab", { background: true, repeatLimit: 20 }]    moveTabToNewWindow: ["Move tab to new window", { background: true }] -  togglePinTab: ["Pin/unpin current tab", { background: true, noRepeat: true }] -  toggleMuteTab: ["Mute/unmute current tab", { background: true, noRepeat: true }] +  togglePinTab: ["Pin or unpin current tab", { background: true, noRepeat: true }] +  toggleMuteTab: ["Mute or unmute current tab", { background: true, noRepeat: true }]    closeTabsOnLeft: ["Close tabs on the left", {background: true, noRepeat: true}]    closeTabsOnRight: ["Close tabs on the right", {background: true, noRepeat: true}] | 
