Cemal Okten
Cemal Okten

Reputation: 828

Sublime Text start without opening previous/old files

Sublime text opens, wants to reload old files because they have changed, I reload a few and then it crashes.

Is there a way to start Sublime Text afresh, letting it forget the last files that it had open?

Upvotes: 0

Views: 383

Answers (2)

talamaki
talamaki

Reputation: 5482

In Sublime Text 3 set hot_exit to false in "Preferences -> Settings-User"

"hot_exit": false

remember_open_files doesn't exist in Sublime Text 3 settings anymore.

Upvotes: 1

Dimag Kharab
Dimag Kharab

Reputation: 4519

enter image description here

Go to Sublime Text

Choose

Preferences >> Settings-User

Add the code below to the current settings. (Remember to add a comma at the end of the first line if it doesn’t) and save it.

{
    "remember_open_files": false,
    "hot_exit": false,
}

Upvotes: 0

Related Questions