4

When I open sublime from a terminal window in the root level of a project

$ subl .

Two windows open. One is the open to the current working directory (which I want). The Other is a previous session (which I don't want).

Is there a way to curb this behavior? Is there a cache area that I can clear without removing other plugins and settings?

Rick
  • 2,847

1 Answers1

10

Try disabling the hot_exit and remember_open_files options in your sublime configuration (PreferencesSettings User):

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

Source: http://www.sublimetext.com/forum/viewtopic.php?f=3&p=64602

Glutanimate
  • 21,393