sublimetext3 - Sublime Text. Hide, but not exclude files/folders from the project? -


is possible hide, not exclude project? can still access them in project search etc?

by hiding mean not displaying them in sidebar. when exclude files project can't access them through cmd-p.

to hide files sidebar, you’ll need to:

-save current open directory project (project > save project as) - open .sublime-project file , copy path - paste in following code , paste in path copied above

{  "folders": [     {      "folder_exclude_patterns": [         "excludedfolder1",         "excludedfolder2"      ],      "path": "/your/project/path/here",      "file_exclude_patterns": [         "excludedfilename1.txt",         "excludedfilename1.txt"      ]     }  ] } 

reference hiding files in sublime


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

firemonkey - How do I make a beep sound in Android using Delphi and the API? -