I'm using a .tm_properties
file to exclude certain folders from the file browser of a TextMate 2 project, and it's generally working great. So, for instance, I've got a line like this to exclude a junk
folder:
excludeDirectories = "{$excludeDirectories,junk}"
And, that works great to hide all folders called junk
.
BUT, let's say I happen to have two folders in the project that are both called junk
, and I want to exclude one but include the other. How do I set the first junk folder specifically to be excluded, while not excluding the second?
I've tried stuff like this, with no success:
excludeDirectories = "{$excludeDirectories,/junk}"
excludeDirectories = "{$excludeDirectories,~/junk}"
excludeDirectories = "{$excludeDirectories,./junk}"
excludeDirectories = "{$excludeDirectories,'./junk'}"
Anyone know if this is possible and/or how to accomplish? Thx!