在 Sublime 中制作项目的目的是什么?

What is the purpose of making a project in Sublime?

我正在阅读 blog 以更好地理解为 sublime(或任何编辑器)制作项目的目的:

When you save your code as a project you end up with two files. The first is the project file which contains references to folders for your project, project based settings and build commands for your project. The second file is the workspace. This is simply a file that tracks what layout you're currently using and what files you have open in each pane. Using the workspace file means that you can switch to another project, do some work and then switchback to your original project knowing that the layout and files you had open will be restored back to the state you left them in. Handy.

看来有两个原因? 1. 是保存设置和 2. 是保存您已经打开的文件和文件夹的当前布局?我认为原因 2 很好,但不是特别重要。原因 1 中的哪些设置对于项目之间的保留很重要?什么是构建命令?

您可能只需要针对不同的客户遵循不同的编码标准,例如缩进规则,因此您可以在每个项目的基础上设置这些规则很方便。

构建系统让您运行或直接从 Sublime Text 编译代码。