You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now search plugin use this regex: (?=.*\bWORD\b) and it works for latin words but not for non-latin ones and this is about \b word boundaries.
We can use this alternative way to support both latin and non-latin characters: (?=.*(?<=\s|^)WORD(?=\s|$))