illyabusigin / CYRTextView

CYRTextView is a UITextView subclass that implements a variety of features that are relevant to a syntax or code text view.
MIT License
535 stars 71 forks source link

Critical issue in syntax highlighting core #17

Open zyavrik opened 10 years ago

zyavrik commented 10 years ago

Steps to reproduce:

  1. Run example application from the package.
  2. Type word "using".

Actual result:

Part of word "sin" will be highlighted.

Should be:

Only whole words should be highlighted.

zyavrik commented 10 years ago

The is no this issue on QED Solver too.

zyavrik commented 10 years ago

Should be used regex like @"\b(?:a|b|c)\b" to fix the issue.

zyavrik commented 10 years ago

And @""\bmod\b" instead @""\bmod\b" on the example application.