Edit¶
Minimal settings for a Project¶
- Open the Side Bar
- Create a Project
- Open the
*.sublime-projectfile located to your Project locationCopythe following{ "folders": [ { "path": ".", "file_exclude_patterns": [ "*.sublime-project", ] } ] }
Pasteit inside the*.sublime-projectfile
Note
The "folders" parameter defines the folders included to your Project.
The "path" parameter specifies a folder you want to include.
Specify . as setting for "path" parameter will include the folder where your Project was created.
The "file_exclude_patterns" parameter hides from the Side Bar the display of specified extensions.
The "*.sublime-project" as setting for "file_exclude_patterns" parameter will hide all the *.sublime-project file inside the Project.
Hide Project files with specific file extension¶
Note
This example will hide *.exe files from your Project
- Open the Side Bar
- Open a Project including at least one
*.exefile- Open the
*.sublime-projectfile located to your Project location- Locate the
"file_exclude_patterns"parameter- If you use a minimal settings for a Project you must have
"file_exclude_patterns": [ "*.sublime-project", ]
- Modify the Settings by adding
"*.exe,"- You must have something like this
"file_exclude_patterns": [ "*.sublime-project", "*.exe", ]
Note
This will hide the *.exe files from the Side Bar.