Joined May 2013
·
Posted to
Symfony2 project Sublime config
over 1 year
ago
I prefer to add the cache, logs and web folders in the "binary_file_patterns" instead off the "folder_exclude_patterns". This makes sure you're still seeing the folders in your sidebar, but don't get results when you search the full projects.
{
"folders":
[
{
"path": "/your/path/here",
"binary_file_patterns": [
"app/cache/*", "app/logs/*",
"web/js/*", "web/css/*", "web/bundles/*"
]
}
]
}
Achievements
58 Karma
0 Total ProTip Views

Forked
Have a project valued enough to be forked by someone else

Nephila Komaci
Have at least one original repos where PHP is the dominant language

Nephila Komaci 3
Have at least three original repos where PHP is the dominant language

Walrus
The walrus is no stranger to variety. Use at least 4 different languages throughout all your repos

Charity
Fork and commit to someone's open source project in need

Raven
Have at least one original repo where some form of shell script is the dominant language
@runexec Or just
alias ls='ls --color=auto'
, I think you always want colors when you use ls.