From a75e99c1a4a2ca327bf46dbf78b5ce973f3fe082 Mon Sep 17 00:00:00 2001 From: Stephen Blott Date: Sat, 24 Sep 2016 09:05:29 +0100 Subject: Tweak #2269 (toggleMuteTab). --- CREDITS | 1 + README.md | 4 ++-- background_scripts/commands.coffee | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CREDITS b/CREDITS index 1caab17d..0d23d364 100644 --- a/CREDITS +++ b/CREDITS @@ -47,5 +47,6 @@ Contributors: Dahan Gong (github: gdh1995) Scott Pinkelman (github: sco-tt) Darryl Pogue (github: dpogue) + tobimensch Feel free to add real names in addition to GitHub usernames. diff --git a/README.md b/README.md index 6162d6f8..dd229981 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,6 @@ Manipulating tabs: X restore closed tab (i.e. unwind the 'x' command) T search through your open tabs pin/unpin current tab - 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 ``). - You can now map `` to a Vimium command (e.g. `map goBack`). - Bug fixes: - `` is no longer handled (incorrectly) as `Escape`. This also affects ``. 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}] -- cgit v1.2.3