-
Notifications
You must be signed in to change notification settings - Fork 64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
icon request: opened folder with down arrow #115
Comments
Hi did you ever get this done? I love this icon pack for vscode but it really bothers me that there is no open folder icon. It makes traversing large folder structures quite difficult. |
hi! no! vscode kept messing up the icon selection for some reason. so,:
|
oh and by the way, don't forgot to like the issues which u need. so many projects use thumbs up count as a measure to prioritise their devt efforts |
I did some digging around and can see that originally the Octicons used in this theme only contain these I think it would be cool if we could use the updated Octicon file icons which look as follows: or to use fontawesome one's which I see the fontawesome.woff2 already contains. This would require some minor file-icons-icon-theme.json changes such as adding below: "folder": "_folder",
"folderExpanded": "_folder_open",
"rootFolder": "_repo",
"iconDefinitions": {
"_file": {
"fontId": "octicons",
"fontCharacter": "\\f011",
"fontSize": "114%"
},
"_folder": {
"fontId": "fa",
"fontCharacter": "\\f07B",
"fontSize": "114%"
},
"_folder_open": {
"fontId": "fa",
"fontCharacter": "\\f07C",
"fontSize": "114%"
}, I am curious what @Alhadis and @DanBrooker think of this change 😄 |
see for example the vs-code icon themes:
vs-minimal
the summary is that currently, the
files-icon
the suggestion for
file-icons.file-icons
is to change the opened one to "down arrow & open folder"PS: thanks a lot for such a nice icon-pack. i was also looking for smth similar: "for improved visual grepping"
The text was updated successfully, but these errors were encountered: