2

我在工作和家庭中都使用 Sublime text 2 作为我的 IDE。在 Windows 机器上,当程序关闭等时,sublime 会记住左侧列中的所有文件夹。

但是,在我的 Mac 上,使用 sublime 会在该窗口关闭后立即删除文件夹。

有谁知道如何解决这一问题?

4

1 回答 1

4

这个选项应该在 Sublime Text 2 -> Preferences -> Settings - Default 下

在此处输入图像描述

// 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,
于 2013-11-03T22:06:39.977 回答