Add ignored file types to sublime project

This commit is contained in:
Moritz Brückner 2019-09-22 01:34:19 +02:00
parent 22dd37cc67
commit 16dd8d493d

View file

@ -630,8 +630,11 @@ def generate_sublime_project(subl_project_path):
print('Generating Sublime Text project file')
project_data = {
'folders': [
{'path': '.'}
"folders": [
{
"path": ".",
"file_exclude_patterns": ["*.blend*", "*.arm"]
},
],
}