skip to Main Content

In my VS Code I’ve enabled:

"files.autoSave": "onFocusChange"

It is very annoying to always see the blue count badge on explorer:

enter image description here

How can I remove this badge?

P.S. I do not want to set: "files.autoSave": "afterDelay". I know how to remove git badge: "git.countBadge": "off"

2

Answers


  1. As far as I know, at the time of this writing, there is no such user-facing feature in VS Code to disable this.

    This has been raised as a feature-request at least once in the past: ability to hide the badge under the explorer icon #156695, but it didn’t receive enough community support in time to get added to the backlog. You could try raising it again if you really want the feature.

    Login or Signup to reply.
  2. It might be related to another source control provider or extension you have installed that tracks file changes. If you’re using another source control system, check its settings either in the VS Code settings (JSON) file or through the extension’s own settings within the UI.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search