Chris Wiegman

Turning off CoPilot in VSCode

VS Code enables a feature in version 1.95 that shows up as a little icon next to the title bar:

{{0xc002d8aaf0 0xc002d8aaf0 /images/2024/11/command-center-icon.png  Screenshot of the VS Code title bar with the command center icon to the right Screenshot of the VS Code title bar with the command center icon to the right 0xc001cc3080} 0 true}

It doesn’t do much to start except for trying to get you to install GitHub’s CoPilot extension:

{{0xc002d8aaf0 0xc002d8aaf0 /images/2024/11/command-center-menu.png  Screenshot of the command center menu that pops up when clicking the icon Screenshot of the command center menu that pops up when clicking the icon 0xc0022de420} 1 true}

It’s annoying, but really easy to remove. Simply add the following to your VS Code settings and the icon will disappear:

{
  ...
  "chat.commandCenter.enabled": false,
  ...
}

That’s it. No more annoying icon wasting space in your editor.