Different color TODO comments

I’ve seen a few code editors have a yellow line for TODO comments and grey for others. What would be the best way to achieve this?..

// This comment line would be grey
// TODO: investigate how to make this line yellow

As an example. :slight_smile:

An overlay could do this, by emitting line- tokens for lines that match.

That sounds like it’d work well, many thanks.