Instructions for creating a Sublime Text 3 project
Last updated 2018-06-21 by Adam Lu
-
Click on
File -> Open Folder
and choose a folder you want to include -
Click on
Project -> Add Folder to Project...
to add other folders you want to include -
Click on
Project -> Save Project As...
and save as a.sublime-project
file.- Note that a
.sublime-workspace
file will also be created, but you won’t need to modify that. It is for saving buffered files (the files you have opened are buffered)
- Note that a
-
Open the
.sublime-project
file that you just saved, and modify the file according to the documentation page here. In particular, these may be the most useful:folder_include_patterns
- A list of subfolders to include from the folder. Anything not matching these patterns will be excluded.-
folder_exclude_patterns
- A list of subfolders to exclude from the folder iffolder_include_patterns
is not specified. file_include_patterns
- A list of files to include from the folder. Anything not matching these patterns will be excluded.file_exclude_patterns
- A list of files to exclude from the folder iffile_include_patterns
is not specified.