Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131

Deprecated: Function seems_utf8 is deprecated since version 6.9.0! Use wp_is_valid_utf8() instead. in /home/dplugins-code/htdocs/code.dplugins.com/wp-includes/functions.php on line 6131
Sublime text hide hidden files from the sidebar – Code DPlugins

Sublime text hide hidden files from the sidebar

Open preferences by pressing Command + “,”

And paste the following snippet

"file_exclude_patterns":
	[
		"*.svn",
		"*.git",
		"*.hg",
		"CVS",
		"*tmp/cache",
		"*._*",
		"*.DS_Store"
	],
	"folder_exclude_patterns":
	[
		".sass-cache",
		".svn",
		".git"
	],
	"font_size": 14.0,
	"ignored_packages":
	[
		"Vintage"
	]

Taken from: https://gist.github.com/supawaza/8009192

Click to Copy