Sublime Forum

Global Project List

#1

As I use ST2 more and more my number of projects grow. I need a simple way to see all of my projects and select the one I want. This could be a “favorites” sort of menu that users save to, or it could be a smart menu that scans for all project files. If there is a plugin that will do that already, great, as I have not been able to find it. Anyone have any comments on this?

0 Likes

#2

Project > Switch Project in Window

0 Likes

#3

I made a batch file that finds all of my sublime project files and generates a list that can be merged with Sublime’s session file (Session.sublime_session). You can also manually maintain this “fake” session file. When your “fake” session file is ready, simply merge it with the actual session file from sublime (you probably want to close Sublime before you do this merge just to be safe). On windows the Sublime session file is in the “Data\Settings” directory in the installation folder.

The “fake” session file should have the following format:
Note: On windows, look at the existing session file to see how the paths should be formatted

{
    "workspaces":
    {
        "recent_workspaces":
        
            "full_path_to_project_1",
            "full_path_to_project_2",
            ...
            "full_path_to_project_n"
        ]
    }
}
0 Likes