We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4057a58 commit 1404ba5Copy full SHA for 1404ba5
src/vs/workbench/contrib/chat/electron-sandbox/actions/voiceChatActions.ts
@@ -871,9 +871,13 @@ export class KeywordActivationContribution extends Disposable implements IWorkbe
871
if (result === KeywordRecognitionStatus.Recognized) {
872
if (this.hostService.hasFocus) {
873
this.commandService.executeCommand(this.getKeywordCommand());
874
- } else {
875
- this.handleKeywordActivation();
876
}
+
+ // Immediately start another keyboard activation session
877
+ // because we cannot assume that the command we execute
878
+ // will trigger a speech recognition session.
879
880
+ this.handleKeywordActivation();
881
882
883
0 commit comments