Socolin/HighlightSpecialFiles

How can I select all .cs files?

MikeKholomeev opened this issue · 6 comments

How can I select all .cs files?

\.cs$ - doesnt work

Try ^.+\.cs$

Yea! Thanks, it helped.

I wonder - does it mean that regex pattern should match the whole file name?

Yes, I think this is how Java regex works, I'll check later the details

So yes, this is how Pattern work in java

There is another method hitEnd() that do the partial match, since there is an easy workaround I think I'll let this that way.

Ok. In this case, I think, it's better to add this info to the Readme/description