Add keybinding to mute/unmute Voice Mode - #336342
Merged
Megan Rogge (meganrogge) merged 5 commits intoSep 16, 2026
Merged
Conversation
Co-authored-by: meganrogge <29464607+meganrogge@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add keyboard shortcut and voice command for mute/unmute
Add keybinding to mute/unmute Voice Mode
Sep 15, 2026
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Megan Rogge (meganrogge)
marked this pull request as ready for review
September 15, 2026 23:56
Megan Rogge (meganrogge)
enabled auto-merge (squash)
September 15, 2026 23:56
Contributor
|
Base:
|
roblourens
previously approved these changes
Sep 16, 2026
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 6634f44b-98ed-4183-b012-093cee87cfa3
Raymond Zhao (rzhao271)
previously approved these changes
Sep 16, 2026
This reverts commit 0be3268.
Anthony Kim (anthonykim1)
approved these changes
Sep 16, 2026
roblourens
approved these changes
Sep 16, 2026
Megan Rogge (meganrogge)
deleted the
copilot/easier-mute-unmute-voice-mode
branch
September 16, 2026 18:16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Voice Mode listens continuously while connected, so it can act on conversations not meant for it. The only way to mute was the UI button; there was no keyboard shortcut. This adds a keybindable toggle command.
agentsVoiceMutedcontext key (common/agentsVoice.ts), bound to the controller'sisMutedobservable in the existing connection-state autorun.agentsVoice.toggleMutecommand (browser/agentsVoice.contribution.ts):f1), so users can assign their own binding.Ctrl/Cmd+Shift+M, scoped viawhento Voice Mode enabled + connected + active on surface, so it doesn't shadow the global shortcut otherwise.toggledstate flips the label to "Unmute Microphone" while muted.IVoiceSessionController.setMuted, keeping the session connected for instant resume — same plumbing as the UI mute button, so both stay in sync.