Try editing your .sublime-project file to better organize your workspace!
Create a project structure custom tailored for your project framework.
In this case, Symfony =)
A HUGE advantage of this is the optimization it provides to Sublime's not-so-awesome advanced search filter. Not you can easily search through only files and directories you want. Just define them as a set!
{
"folders":
[
{
"name": "Root",
"path": "/Applications/MAMP/htdocs/project-dir",
"folder_exclude_patterns": ["app/cache", "app/logs", "node_modules"]
},
{
"path": "assets",
"name": "Assets",
"folder_exclude_patterns": ["assets/css"]
},
{
"path": "src/namespace",
"name": "Bundles",
"file_exclude_patterns": ["*~"]
},
{
"path": "app/config",
"name": "Configs"
},
{
"path": "web",
"name": "Public",
"file_exclude_patterns": ["*.swf", "*.txt", "*.ico"],
"folder_exclude_patterns": ["css", "js"]
}
]
}
Written by Jarad DeLorenzo
Related protips
1 Response
Where do I put this file?
over 1 year ago
·
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Sublime
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#