Mirror318
Mirror318

Reputation: 12663

How to disable blue notification badges in VS Code's Activity Bar?

I can't stand these things, any way to turn them off?

enter image description here

Upvotes: 17

Views: 2112

Answers (4)

Artur INTECH
Artur INTECH

Reputation: 7276

"git.showProgress": false,
"git.countBadge": "off",
"scm.countBadge": "off",

Upvotes: 0

Mark
Mark

Reputation: 180825

There is an ability to disable badges for Activity Bar Views in the Stable Build v1.74 now.

In the context menu for each icon - but NOT for Accounts - is a toggle Hide Badge or Show Badge.

toggle activity bar badges

I think settings and/or commands may be coming to toggle these badges on or off but aren't in the Insiders Build yet.

Upvotes: 5

Stuart Cook
Stuart Cook

Reputation: 4014

If you never actually use the Source Control tab, you can right-click and hide it entirely.

That should at least get rid of the distracting flicker that happens a few seconds after every save.

Upvotes: 2

Gama11
Gama11

Reputation: 34138

To disable the Git badge, you can add this to your settings.json:

"git.countBadge": "off"

I could not find an equivalent setting for the unsaved file counter. However, as a workaround, enabling auto-save with a short delay also disables that badge:

"files.autoSave": "afterDelay"

Upvotes: 9

Related Questions