CYRTextView
CYRTextView copied to clipboard
Critical issue in syntax highlighting core
Steps to reproduce:
- Run example application from the package.
- Type word "using".
Actual result:
Part of word "sin" will be highlighted.
Should be:
Only whole words should be highlighted.
The is no this issue on QED Solver too.
Should be used regex like @"\b(?:a|b|c)\b" to fix the issue.
And @""\bmod\b" instead @""\bmod\b" on the example application.