2013-04-18 4 views
-1

Sublime Text, похоже, помнит, какие файлы у меня открыты (и несохраненные изменения) между сеансами. Как я могу заставить Sublime Text вести себя как Блокнот? И спросите, хочу ли я сохранить изменения, когда я уйду?Не помните файлы и изменения между сеансами

+0

Почему вы сказали, что * Это сообщение не соответствует нашим стандартам качества. *? – Pigueiras

ответ

1

В Настройки -> Настройки - по умолчанию есть атрибуты, которые вы должны отключить:

[...] 
// 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 значения вы достигнете этого.

Смежные вопросы