1

如何配置 Sublime 2 以自动保存我关闭的文件?它的行为应该像,用户打开文件,进行编辑,关闭文件,并且即使用户没有手动保存编辑的文件,编辑也会自动保存。

这很接近,但我希望它保存文件关闭而不是失去焦点。

https://docs.sublimetext.io/reference/settings.html
save_on_focus_lost

4

1 回答 1

4

您是否希望在仅关闭一个文件或所有打开的文件(窗口)都关闭时神奇地保存文件?在第一种情况下,我建议将每个文件打开到 SublimeText2 的不同窗口中。

在第二种情况下,您正在寻找hot_exit: Preferences.sublime-settings

// Exiting the application with hot_exit enabled will cause it to close
// immediately without prompting. Unsaved modifications and open files will
// be preserved and restored when next starting.
//
// Closing a window with an associated project will also close the window
// without prompting, preserving unsaved changes in the workspace file
// alongside the project.
"hot_exit": true,

除了remember_open_files之外,您还可以在退出时自动保存并选择下次是否打开这些文件。

于 2012-07-19T10:43:39.860 回答