我在工作和家庭中使用Sublime text 2作为我的IDE。在Windows机器上,当程序关闭时,sublime会记住左边的所有文件夹都有列。
但是在我的mac上使用sublime会在该窗口关闭后立即删除文件夹。
有谁知道如何解决这个问题?
答案 0 :(得分:4)
此选项应在Sublime Text 2 - >下;偏好 - >设置 - 默认
// 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": false,
// remember_open_files makes the application start up with the last set of
// open files. Changing this to false will have no effect if hot_exit is
// true
"remember_open_files": false,