Get rid of the "M" mark after file name in vscode

Viewed 1792

I don't know if it is a new feature in vscode. But I just want the "1" mark and the "M" mark after the file names disappear: enter image description here enter image description here

Does anyone one know how to turn if off?

1 Answers

For Linux users:

add this line to the settings.json file of vscode:

"workbench.editor.decorations.badges":false,

For macOS Users:

thats coming from the git gui in macOS you can disable it by going to the settings and unchecking the "enable git" like this:

Screenshot

Doing this will not disable command line use of git cli it will only disable the GUI features provided by Vs Code at least as far as Ive tested.

Related