better-comments icon indicating copy to clipboard operation
better-comments copied to clipboard

How to disable colour highlight for specific types

Open thistlillo opened this issue 2 years ago • 1 comments

I am using another extension for highlighting TODOs annotations. The colours used by this second extension were conflicting with the colours used by better-comments making unreadable the highlighted text.

Trying to disable the highlighting of TODOs made by better-comments, the only solution I found was to add all these lines to my settings.json:

"better-comments.tags": [
  {
    "tag": "todo",
    "color": "",
    "strikethrough": false,
    "underline": false,
    "backgroundColor": "transparent",
    "bold": false,
    "italic": false
  }

However, I am not sure I am preventing better-comments from touching lines with TODOs since I see annoying colour glitches when I open new files.

Is there a way to tell better-comments to stop considering TODOs?

thistlillo avatar Feb 27 '22 07:02 thistlillo

I also have this problem. Have you been able to solve it?

Shurikus-crypto avatar Feb 04 '24 18:02 Shurikus-crypto