alefragnani / vscode-project-manager

Project Manager Extension for Visual Studio Code
GNU General Public License v3.0
1.96k stars 228 forks source link

[FEATURE] - Modify the tag by users ourselves #758

Closed Bpc-CPU closed 3 months ago

Bpc-CPU commented 3 months ago

It's noticed that there is only two tags including Personal and Work. It seems that I can't add more tags. Can you please add a feature to allow us to add the tag?

We users can add the tags and modify the tags by ourselves. PS: I've found that I can modify the tags in the file "projects.json", but it wasn't convenient.

alefragnani commented 3 months ago

Hi @Bpc-CPU ,

You can improve the list of built in tags using the projectManager.tags setting. Just like:

    "projectManager.tags": [
        "Personal", 
        "Work",
        "VS Code",
        "Learning"
    ]

Doing so, you will be able to select any of the ones you added.

Also, an improvement on how to use custom tags is already being tracked in #551.

Hope this helps