Home > Back-end >  Annoying Sound with GitHub Copilot When making in-line suggetions in Visual Studio Code
Annoying Sound with GitHub Copilot When making in-line suggetions in Visual Studio Code

Time:09-27

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.

CodePudding user response:

I suggested to 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 to would effectively disable all audio cues:

Audio Cues: Volume   // set to 0
  • Related