Sublime Forum

Nexus theme doesn't replace vanilla folder icons in sidebar

#1

I recently updated Sublime Text to Build 3065, the build with folder icons in the sidebar. It works fine on all of my themes but the Nexus theme: github.com/EleazarCrusader/nexus-theme
In this theme, both the custom icons from the theme and the vanilla folder icons show. How can I fix this?

0 Likes

#2

Submit an issue on Github to the creator or fork it and take a look at the source of themes like Predawn that do replace the icons.

0 Likes

#3

I did look at another theme and could not figure out the difference. I even copy pasted the other theme’s code into the Nexus theme, which changed the folders to the other theme’s icons, but kept the vanilla ones. I will try submitting an issue. The problem is that the theme has not been updated in 2 years so I think the author might be inactive.

Thanks for the reply.

0 Likes

#4

Here is a fix:

Add this to the theme to remove the vanilla icons:

{
“class”: “icon_file_type”,
“content_margin”: [0,0]
},
{
“class”: “icon_folder”,
“content_margin”: [0,0]
},
{
“class”: “icon_folder_loading”,
“content_margin”: [0,0]
},

reddit.com/r/SublimeText/com … _released/

0 Likes