PavelTorgashov / FastColoredTextBox

Fast Colored TextBox for Syntax Highlighting. The text editor component for .NET.
Other
1.21k stars 463 forks source link

Words with same prefix #191

Closed Cop46 closed 4 years ago

Cop46 commented 4 years ago

Hi, I use your library in c# for a simple code editor and I have one problem. If I have for exemple 3 words named : "pre","pretest","pretested" with Range.SetStyle(KeywordsStyle, @"pre|pretest|pretested", System.Text.RegularExpressions.RegexOptions.IgnoreCase);

Only the "pre" word was colored. If I wrote from the smallest to the biggest word that work but I use many file for keywords and this is absolutely impossible to sort this list... Have you got any idea ?

Thanks for your work for this excellent library :).