-
Notifications
You must be signed in to change notification settings - Fork 37.7k
Description
- VSCode Version: 1.49
- OS Version: Windows 10
Steps to Reproduce:
- Command: Change language mode
- No icons are displayed, I use a custom icon theme.
In previous version 1.48 icon were displayed, this is no more the case.
In fact, you must specified languageIds in order to work.
Specify fileExtensions only doesn't work anymore.
My custom icon theme:
"fileExtensions": {
"htm": "_f_html",
"js": "_f_javascript",
"ini": "_f_settings",
"bat": "_f_shell",
"sql": "_f_database",
[...]
},
"languageIds": {
"plsql": "_f_database"
},
"iconDefinitions": {
"_f_database": {
"iconPath": "./icons/png/database.png"
},
"_f_html": {
"iconPath": "./icons/png/html.png"
},
"_f_javascript": {
"iconPath": "./icons/png/javascript.png"
},
"_f_shell": {
"iconPath": "./icons/png/shell.png"
},
"_f_settings": {
"iconPath": "./icons/png/settings.png"
},
[...]
}
Only plsql icon is displayed.
I test with other icon themes this is the same...
Does this issue occur when all extensions are disabled?: yes
