Instructions for creating a Sublime Text 3 project
Last updated 2018-06-21 by Adam Lu
- 
    Click on File -> Open Folderand 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-projectfile.- Note that a .sublime-workspacefile 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-projectfile 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_patternsis 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 if- file_include_patternsis not specified.