Joined February 2015
·
Posted to
Ignore .sass-cache folder in Sublime Text
over 1 year
ago
mkellogg999 is right. If you edit the folderexcludepatterns in your user settings, you have to include the folderexcludepatterns from the default settings.
Defaults:
"folderexcludepatterns": [".svn", ".git", ".hg", "CVS"],
This is because user settings file completely overwrites the default settings, rather than being additive (like CSS files or .profile/.bash_profile).
Thanks! This was very helpful.