aaron-bond / better-comments

https://marketplace.visualstudio.com/items?itemName=aaron-bond.better-comments
MIT License
839 stars 163 forks source link

Possibility to add tag aliases #484

Open porg opened 1 year ago

porg commented 1 year ago

Status Quo

Proposal

Workaround

Code

settings.json of Better Comments:

{
    ...

    "[html]": {

        ...

        "better-comments.tags": [

            {
                "tag": "*",                       // <-- I'd prefer to add tag aliases like "FIXED: " here.
                "color": "#98C379",
                "strikethrough": false,
                "underline": false,
                "backgroundColor": "transparent",
                "bold": false,
                "italic": false
            },
            {
                "tag": "FIXED: ",                 // <-- Workarround: Duplicate definition for another tag.
                "color": "#98C379",
                "strikethrough": false,
                "underline": false,
                "backgroundColor": "transparent",
                "bold": false,
                "italic": false
            }
        ]
}