在会话之间,Sublime Text 会记住我打开了哪些文件(以及未保存的更改)。如何让 Sublime Text 在会话之间忘记这些?
问问题
360 次
1 回答
1
在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": true,
// 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": true,
[...]
将两者都false
重视,您将实现这一目标。
于 2013-04-18T13:25:15.920 回答