Disable colouring of 'TODO' tag in certain packages
Answered
This is kind of a specific question.
I am working on a project where we have 'todo' classes. In the comments in this project, we often write the word 'todo' but not in the context of something that needs to be done in the code, but rather referring to the actual program. For example:
// This check makes sure the todo is persisted without tampering.
the "todo" here would become 'blue'.
As far as I know, I can disable the 'todo' colouring project-wide. But since this is a module inside a much larger program, I'd like to only disable it for certain packages. Is there any way to do this?
Please sign in to leave a comment.
Maybe you can adjust the pattern so that it doesn't match todo in the middle of the string? Default pattern should not match it.
Hey @Serge,
I changed the pattern, that should suffice :-) Thank you!