-
Notifications
You must be signed in to change notification settings - Fork 38.4k
Closed
Labels
api-finalizationinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersthemesColor theme issuesColor theme issues
Milestone
Description
As implemented by #14662 and #118846 (PR)
Language contributors can define an icon for the language.
The icon is used by file icon themes as fallback if they don't have an icon for the language.
- the file icon theme defines at least one file icon (not just a generic icon for all files such as the
Minimaltheme)
-> default language icons do not show in file icon themes likeMinimalorNone - the file icon theme does not define a specific icon for the language
- icons defined for file extensions or file names always win against the language icon (no change)
- file icon themes can override this default behavior by defining
showLanguageModeIcons: true|falsein the theme file.showLanguageModeIcons: trueshows the default language icons even if the theme does not specify a file iconshowLanguageModeIcons: falseprevents that default language icons are used.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
api-finalizationinsiders-releasedPatch has been released in VS Code InsidersPatch has been released in VS Code InsidersthemesColor theme issuesColor theme issues
{ "contributes": { "languages": [ { "id": "latex", // ... "icon": { "light": "./icons/latex-light.png", "dark": "./icons/latex-dark.png" } } ]