I would like to rename my project in sublime IDE. How do I do that?
I don't want to change the name of the folder, just project name.
Hope I'm clear.
I would like to rename my project in sublime IDE. How do I do that?
I don't want to change the name of the folder, just project name.
Hope I'm clear.
Install plugin for Sublime Text 3 ProjectManager and you have option to rename project.
I assume you mean the project name that appears in the window title bar.
The project name is based on the .sublime-project file's basename.
So for example when the project file name is Awesome Project Name.sublime-project then the project name is "Awesome Project Name".
Menu > Project > Save Project As...
To rename an existing project in Sublime:
Open Project or Switch Project.Project > Save Project As... to save the project with the new name.New <name>.sublime-project and <name>.sublime-workspace files will be created and you will be switched into the new project. Because you are already in a project all of the settings from the previous project will be copied into the new .sublime-project file.
After you have created the new project you can delete the <name>.sublime-project/workspace files for the original project.
The old project name may still show up in the quick switcher or Project > Open Recent, but you can solve that with Remove Deleted in the Open Recent menu.