You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to, for example, create a new programming language.
I'd like to change the icon file association for my programming language, so that a logo for my programming language appears instead of the default icon.
For simplicity, let's say I'm creating a fictitious GitHub programming language that has files that end in .gh and my language makes use of a github script, for which I am also updating the icon.
If I just do
"iconThemes": [
{
"id": "override",
"label": "Only override a few icons",
"path": "./override-icon-theme.json"
}
],
in the contributes section of package.json, and override-icon-theme.json is
It would be really helpful if I could just selectively pick-and-choose which icon file associations to override, and let the remaining icon associations stay as-is, so as to not disturb developers' other icon preferences.
What are your thoughts on this?
The text was updated successfully, but these errors were encountered:
Problem Statement
I'd like to, for example, create a new programming language.
I'd like to change the icon file association for my programming language, so that a logo for my programming language appears instead of the default icon.
For simplicity, let's say I'm creating a fictitious GitHub programming language that has files that end in
.gh
and my language makes use of agithub
script, for which I am also updating the icon.If I just do
in the
contributes
section ofpackage.json
, andoverride-icon-theme.json
isthen I end up with
Notice how all icons are gone, except for the ones I specified.
How do I keep all icons, except for the specific ones I want to override?
Even if I were to just copy-and-paste
extensions/theme-seti/icons/vs-seti-icon-theme.json
, and mergewith that, that would be a hindrance to developers who use, say,
extensions/theme-defaults/fileicons/vs_minimal-icon-theme.json
, since now they have to useextensions/theme-seti/icons/vs-seti-icon-theme.json
as their "fallback" icons to see updated icons for the fictitious "GitHub" programming language.It would be really helpful if I could just selectively pick-and-choose which icon file associations to override, and let the remaining icon associations stay as-is, so as to not disturb developers' other icon preferences.
What are your thoughts on this?
The text was updated successfully, but these errors were encountered: