I use ST3 b3126 under Ubuntu 16.04 and in my user settings I have “remember_open_files”: false and in my project setting file (.sublime-project) I have “remember_open_files”: true. It seems ST3 only remembers project opened files if the project is closed with the “Close Project” command but completely forgets them if its window just gets closed with either “Alt+F4” or a mouse. Is there a way to make ST3 remember project opened files when it’s window is closed (i.e. without using “Close Project” command)?
Remember_open_files in project settings
addons_zz
#2
This seems a bug on the Sublime Text core. You can open a Issue for it on the core issue trackers https://github.com/SublimeTextIssues/Core/issues, but until they fix it, I think you could try to create a package to fix this problem by calling the close_project
command when you hit Ctrl+F4
or close the window with the mouse.
But doing so, would cause Sublime Text to open without any project open as the hot_exit
feature would not remember the last opened project as the close_project
command was issued.
0 Likes
cioma
#3
As suggested I’ve opened and issue: https://github.com/SublimeTextIssues/Core/issues/1835
1 Like