Is it possible to just hide, but not exclude from the project? So I can still access them in project search etc?
By hiding I mean not displaying them in sidebar. When I just exclude files from the project I can't access them through Cmd-P
.
To hide files from the sidebar, you’ll need to:
-Save the current open directory as project (Project > Save Project As) - Open the .sublime-project file and copy the path - Paste in the following code and paste in the path copied above
{
"folders": [
{
"folder_exclude_patterns": [
"excludedfolder1",
"excludedfolder2"
],
"path": "/your/project/path/here",
"file_exclude_patterns": [
"excludedfilename1.txt",
"excludedfilename1.txt"
]
}
]
}
reference from hiding files in sublime
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With