セッション間で、Sublime Text は、私が開いたファイル (およびそれらへの未保存の変更) を記憶しています。セッション間でSublime Textにこれらを忘れさせるにはどうすればよいですか?
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 に答える