Open goyalyashpal opened 12 months ago
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 did you ever get this done?
hi!
no! vscode kept messing up the icon selection for some reason. so,:
in vscodium, i:
on a system level, i started to use the following (all these are cross platform):
lsd -Al --tree
for a much much much better and colorful long listing of files in terminal CLIdirs
(bash
builtin) to quickly switch between multiple dirs in terminal :
dirs -v
, pushd
, popd
this is available on windows with msys2oh 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 have found this which goes with the same style, but cannot find an open folder icon that uses this style and I sadly do not have the vector graphic skills to make one.
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%"
},
Which looks like:
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"