Removing projects in Sublime Text 2 and 3
How do you remove a project from Sublime Text 2 and 3's project windows (Ctrl+Alt+P) ?
Delete has no effect, there is no contextual menu, and deleting the associated files *.sublime-project
and *.sublime-workspace
doesn't remove the project from the list either.
Any idea? Because this window begins to be cluttered...
It would be nice if Sublime Text removed projects you've deleted from the recent projects list. Unfortunately, it does not and the list can become littered with projects that no longer exist.
Until Sublime Text offers this feature there are a couple of manual ways you can remove projects.
Option 1: The quick way (Clear All):
If you're just looking for the fastest way to clean up your list this option is for you.
Please be aware that this will clear out all projects in the recent list. This includes ones you have not deleted.
In the Sublime Text menu goto:
Project > Open Recent > Clear Items
Option 2: The manual way (but with control of which projects are removed):
- Close Sublime Text
-
Locate the
Session.sublime_session
file using the paths below and open it with another code editor. * DO NOT open it with Sublime Text as any changes you make will be overwritten. *Paths to
Session.sublime_session
file listed by OS and ST version:Windows x64:
Sublime Text 2
C:\Users\[Username]\AppData\Roaming\Sublime Text 2\Settings\Session.sublime_session
Sublime Text 3
C:\Program Files\Sublime Text 3\Data\Local\Session.sublime_session
Mac OSX:
Sublime Text 2
~/Library/Application Support/Sublime Text 2/Settings/Session.sublime_session
Sublime Text 3
~/Library/Application Support/Sublime Text 3/Local/Session.sublime_session
Linux (Ubuntu):
Sublime Text 2
~/.config/sublime-text-2/Settings/Session.sublime_session
Sublime Text 3
~/.config/sublime-text-3/Local/Session.sublime_session
What to expect to see:
You should see something like the following at the bottom of this file:
-
Remove the unwanted project(s) from this file
What the file would look like after deleting project3:
Save and re-launch Sublime Text 2/3
Option 3: The plugin way
You can check out the Sublime Text plugin Project Manager.
Option 4: The Node.js way
You can check out: clean-sublime-text-project-history
Just to clarify something in Valjas' solution above.
When he says: "Go to Sublime Preferences folder..." he means: "Go to the USER folder", not the Program folder.
Attention: Use a different editor to modify the "Session.sublime_session" file:
Although obvious for many, it may not be for others:
You HAVE to edit the Session.sublime_session
file with a different text editor, and Sublime Text itself has to be closed.
DO NOT use Sublime Text itself, or leave the program running while making the changes.
If you do it'll overwrite your changes when closing the app.
Sublime Text 3:
• WINDOWS x64:
C:\Users\[Username]\AppData\Roaming\Sublime Text 3\Local\Session.sublime_session
• Linux (Ubuntu):
~/.config/sublime-text-3/Local/Session.sublime_session
• Mac OSX/Sierra:
~/Library/Application Support/Sublime Text 3/Local/Session.sublime_session
• Portable Installation (It might work for ST2 as well but I haven't tested):
/folder-where-you-have-ST3-installed/Data/Local/Session.sublime_session
--
Sublime Text 2:
• WINDOWS x64:
C:\Users\[Username]\AppData\Roaming\Sublime Text 2\Settings\Session.sublime_session
• Mac OSX:
~/Library/Application Support/Sublime Text 2/Settings/Session.sublime_session"
then find the section "recent_workspaces"
.
• Linux (Ubuntu):
~/.config/sublime-text-2/Settings/Session.sublime_session
Where To Edit The File
Easy, look for the "recent_workspaces"
section, it's usually at the bottom of the file.
It should look similar to this:
Credits
-
ST3 Linux (Ubuntu) / Build 3047 path added from @ezrepotein4's comment.
-
ST2 Linux (Ubuntu) path added from @0x4a6f4672's comment.
-
Windows x64 and Mac paths taken from this post.