Sublime Forum

How to get back my project settings?

#1

Hey guys!

I have been saving all my project files in one place and in the application, I’ve been using ctrl/alt-P to switch between all my projects. All works well. But recently I had to reinstall my computer and with a fresh install of ST2. Now pressing ctrl/alt-P does not pull up all my projects anymore even if I open an existing project once, it would only show that one.

So is there anyway to get it back to how it was instead of me having to open all my projects once?

Thanks.

0 Likes

#2

I manually edit the session file and add my projects to the “recent_workspaces” entry:

	...
	"workspaces":
	{
		"recent_workspaces":
		
			"/C/SomePath/Project1/Project1.sublime-project",
			"/C/SomePath/Project2/Project2.sublime-project",
			"/C/SomePath/Project3/Project3.sublime-project"
		]
	}
	...
0 Likes

#3

Thanks for that and yes that’s how I ended up doing. I grabed the session file from my backup and replacing the new installed file. All is well again. However, I wish there is an export for that to an XML or something.

0 Likes