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

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -