https://github.com/brackets-userland/brackets-name-a-project
Brackets extension to enable personalized, per-project nicknames for projects.
https://github.com/brackets-userland/brackets-name-a-project
brackets brackets-extension
Last synced: 6 months ago
JSON representation
Brackets extension to enable personalized, per-project nicknames for projects.
- Host: GitHub
- URL: https://github.com/brackets-userland/brackets-name-a-project
- Owner: brackets-userland
- License: mit
- Created: 2015-05-02T17:59:41.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-03-18T19:54:59.000Z (almost 3 years ago)
- Last Synced: 2025-08-23T17:24:41.713Z (7 months ago)
- Topics: brackets, brackets-extension
- Language: JavaScript
- Size: 196 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Brackets Name-A-Project
Extension to enable personalized, per-project nicknames for projects.

## Usage
### Configuring a project name
1. Open File -> Project name
2. Change the name and background color (hex, hsl, rgba or name) for your project
3. Press "Done"
### Resetting a name
1. Open File -> Project name
2. Leave the Project Name and Background color fields empty
3. Press "Done"

## Preferences
Following configuration options are available (under `petetnt.brackets-name-a-project`):
### defaultScope (String)
> Default: `user` - By default the extension saves the project preferences to the global preferences file `brackets.json`. Changing this to `project` makes the extension save the values to project-level `.brackets.json`.
### namedProjects {Object}
> 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:
``` json
"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"
}
}
```
## Licence
MIT
## Contributions
Contributions are welcome! Just open a new issue and/or send a pull request.