7

Problem Statement

  • For the last couple of days, I have been noticing that GitHub Copilot has been making a sound each time it makes a code snippet suggestion. At first, I thought there was something wrong with my computer and was worried that may one of the keys on the keyboard had jammed. It took me two days to figure it out that the sound was actually coming from GitHub Copilot.
  • The other problem is that I had to check the extension's settings and found nothing to do with disabling the sound that it has been producing, and there was no update for the plugin to any later version.

Request

  • How do I make this sound go away because it has actually been annoying me each and everytime a code suggestion has been made.
Chilusoft
  • 155
  • 1
  • 8
  • Does disabling the setting `Audio Cues: Line has Inline Suggestion` make any difference? You could also try setting the `Audio Cues: Volume` to 0 to see if it helps. – Mark Sep 23 '22 at 16:34
  • Thank you, I was able to disable the Audio Cues on line suggestion and it worked. I did not know that it was a native feature. – Chilusoft Sep 23 '22 at 17:15

1 Answers1

15

I suggested you disable the fairly new setting

Audio Cues: Line has Inline Suggestion

and this worked for you.

If that hadn't worked there is a setting that would effectively disable all audio cues:

Audio Cues: Volume   // set to 0
Dave Mackey
  • 4,306
  • 21
  • 78
  • 136
Mark
  • 143,421
  • 24
  • 428
  • 436
  • 8
    You can place this value by going to: Extensions > GitHub Copilot> (click the gear) Extension Settings > follow "Edit in settings.json" Then add: `"audioCues.volume": 0` to the json file. – jadki Dec 31 '22 at 03:06
  • This comment is the real answer. Thanks. – Marc Feb 07 '23 at 17:37