Edit

Minimal settings for a Project

{
    "folders":
    [
        {
            "path": ".",
            "file_exclude_patterns":
            [
                "*.sublime-project",
            ]
        }
    ]
}
  • Paste it inside the *.sublime-project file

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.

Note

For specific purposes your Project, the internal tools or a plugin may require different settings.

But for beginners or to quickly start a Project those settings are enough to make it work properly.

Hide Project files with specific file extension

Note

This example will hide *.exe files from your Project


"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.