You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Atid-G The reason you are seeing two Sublime windows open is because you have a feature called Hot Exit enabled. This lets you exit Sublime and have it remember the state of your open files.
The way I got around this issue is to add the following two options to the Preferences.sublime-settings file
"remember_open_files": false,
"hot_exit": false
Incase you don't know Preferences.sublime-settings lives in your sublime user directory. To access this Open Sublime, click Preferences, then Browse Packages.., then double click the User folder. Here is where you should create Preferences.sublime-settings if it doesn't already exist.
@Atid-G The reason you are seeing two Sublime windows open is because you have a feature called Hot Exit enabled. This lets you exit Sublime and have it remember the state of your open files.
The way I got around this issue is to add the following two options to the
Preferences.sublime-settings
fileIncase you don't know
Preferences.sublime-settings
lives in your sublime user directory. To access this Open Sublime, click Preferences, then Browse Packages.., then double click the User folder. Here is where you should createPreferences.sublime-settings
if it doesn't already exist.