Ignoring files and directories does not work in project files.

Instead use this in your user settings in Sublime 3:

{
	"folder_exclude_patterns":
	[
		"public/assets",
		"log",
		"public/screenshots",
		"tmp"
	],
This commit is contained in:
Christoph Haas 2016-03-01 17:03:02 +01:00
parent cfb5917484
commit 026ee04e02

View file

@ -1,5 +1,8 @@
{
"folders": [{ "path": "." }],
"binary_file_patterns": ["*.jpg", "*.jpeg", "*.png", "*.gif", "*.ttf", "*.tga", "*.dds", "*.ico", "*.eot", "*.pdf", "*.swf", "*.jar", "*.zip",
"public/screenshots/**", "log/*"],
"folders":
[
{
"path": "."
}
]
}