DEV Community

Theodor Heiselberg
Theodor Heiselberg

Posted on

How to Disable Github Copilot Autocomplete in vs code

Why?

I actually like AI. I use it—like, all the time. But being a seasoned programmer, I have grown increasingly frustrated with the invasive suggestions popping up all over the second I start typing in my favorite IDE.

This is not a rant—BUT. Why, why, why isn't there just a button to turn off this noise?

Add this to your settings.json to silence Copilot's "help":

{
    "github.copilot.enable": {
        "*": false,
        "plaintext": false,
        "markdown": false
    }
}
Enter fullscreen mode Exit fullscreen mode

Top comments (1)

Collapse
 
thebonejarmer profile image
Ruben Labruyere

Thank you so much! For some reason, despite having AI features disabled in vs code, I started getting these aggressive suggestions too recently. It wasn't

I like code, and I use it on a daily basis. But Microsoft needs to be remembered that the only reason I have not switched to another editor is because code is so convenient.