I’m following this official guide on how to set a custom TODO filter in Android Studio.
I need to implement an highlight for important comments that are not TODOs, like these:
// important: this note is much more important than other comment lines
// !!!: this note is also much more important than other comment lines
// normal comment
With this regex it works:
bimportantb.*
How to set the filter with !!!
?
I tried these but without success:
b!+b.*
b!!!b.*
b[!]+b.*
b[!!!]b.*
b!b.*
b!!!b.*
b(important|x0021)+b.*
Thanks