1

閉じたファイルを自動的に保存するように Sublime 2 を設定するにはどうすればよいですか? ユーザーがファイルを開き、編集を行い、ファイルを閉じると、ユーザーが編集したファイルを手動で保存しなくても、編集内容が自動的に保存されます。

これは近いですが、フォーカスを失うのではなく、ファイルを閉じるときに保存したいです。

https://docs.sublimetext.io/reference/settings.html
save_on_focus_lost

4

1 に答える 1

4

ファイルを 1 つだけ閉じたとき、または開いているすべてのファイル (ウィンドウ) を閉じたときに、ファイルを魔法のように保存しますか? 最初のケースでは、各ファイルを SublimeText2 の別のウィンドウで開くことをお勧めします。

2 番目のシナリオでは、 hot_exitを探しています: Preferences.sublime-settings

// 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に加えて、終了時に自動的に保存し、それらのファイルを次回開くかどうかを選択できます。

于 2012-07-19T10:43:39.860 に答える