Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Single project with multiple workspaces?

Is there a way to create multiple workspace files for a single project? It seems counter-intuitive for each workspace to need a separate project file. Plus it'll make it super clear that only one project file is checked into git and all the .sublime-workspace files have been .gitignored.

like image 930
paulkon Avatar asked Mar 01 '14 06:03

paulkon


1 Answers

In SublimeText3 you should be able to create new workspaces for the open project from the Project's menu or ctrl+shift+P and search for New workspace for project.

This will create a new window with the current project open. I can't determine if the existing .sublime-workspaces file actually stores both, but you are given the option of saving the current workspace and you can then name it accordingly.

As you accumulate workspaces you can quickly switch between them using the ctrl+alt+P to access the switch project dialog. It will list both recent sublime-workspaces and sublime-projects and I believe it is limited to only those which aren't currently open.

like image 75
EHLOVader Avatar answered Oct 04 '22 22:10

EHLOVader