如何配置Sublime 2自动保存我关闭的文件?它应该表现为,用户打开文件,进行编辑,关闭文件,并且即使用户没有手动保存编辑的文件,编辑也会自动保存。
这很接近,但我希望它保存文件关闭而不是失去焦点。
http://docs.sublimetext.info/en/latest/reference/settings.html
save_on_focus_lost
答案 0 :(得分: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 外,您还可以在退出时自动保存并选择下次是否打开这些文件。