Extension to enable personalized, per-project nicknames for projects.
- Open File -> Project name
- Change the name and background color (hex, hsl, rgba or name) for your project
- Press "Done"
- Open File -> Project name
- Leave the Project Name and Background color fields empty
- Press "Done"
Following configuration options are available (under petetnt.brackets-name-a-project
):
Default:
user
- By default the extension saves the project preferences to the global preferences filebrackets.json
. Changing this toproject
makes the extension save the values to project-level.brackets.json
.
Object that consists of objects. The key is the full path to project, and the value for that key is an combination of _parentPath, _name (original name), name (current name) and background color. Automatically created by the dialog.
Example:
"petetnt.brackets-name-a-project.namedProjects": {
"C:/Users/Pete/AppData/Roaming/Brackets/extensions/user/petetnt.brackets-name-a-project/": {
"_parentPath": "C:/Users/Pete/AppData/Roaming/Brackets/extensions/user/petetnt.brackets-name-a-project/",
"_name": "petetnt.brackets-name-a-project",
"name": "Name A Project Extension",
"bgColor": "blue"
}
}
MIT
Contributions are welcome! Just open a new issue and/or send a pull request.