How to one rename a project in sublime text editor 3

sublime-text-3

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.

Best Answer

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...

Related Question