I know that I can add/hide/rename folders to a project by editing the folder part of the .sublime-project file. Is there a way to “merge” them in a parent folder that is displayed only in the Side Bar?
For example, this below will include the two folders UT_R and UT_V as two separate folders in the Side Bar
“folders”:
[
{“name”: “UT Repeatable”, “path”: “SQLs/UT_R”},
{“name”: “UT Versioned”, “path”: “SQLs/UT_V”}
],
But that adds two entries to the Side Bar. Is it possible to make them appear as Repeatable and Versioned under UT without rearranging the actual folders in the file system? What I’ve tried and know that doesn’t work is adding a slash to the name:
“folders”:
[
{“name”: “UT/Repeatable”, “path”: “SQLs/UT_R”},
{“name”: “UT/Versioned”, “path”: “SQLs/UT_V”}
],
That simply adds those slashes to the names.