Reputation: 451
There are a lot of different colors for the different files in my project hierarchy but so far I have been unable to find an overview of what all of these colors mean. Where can I find more information on this?
Edit: Please see this screenshot:
It has the colors red ("9+"), green ("U"), light yellow ("M"), dark yellow ("2"). Would be interested to have an overview of what all those colors refer to
Upvotes: 2
Views: 3288
Reputation: 123
You are seeing a combination of git status decorations and error/warning decorations.
git status
).git.decorations.enabled
setting.explorer.decorations.colors
setting.explorer.decorations.badges
settings..gitignore
)I hope my explanation was clear and not boring😁. Have a good day😊
Upvotes: 5
Reputation: 4019
All these colors are depending on your theme, so there is no generic description of what the colors mean.
The colors for the git status have been introduced in v1.18 with the appended character being the short format of git status
("A"=added, "M"=modified).
A number next to a filename is an indicator for problems in that file. Even though it is not documented anywhere, the default theme colors are red for errors and yellow for warnings.
Upvotes: 1