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
The problem with \w is that in most implementation it is not unicode friendly.
You'll split on accented letters like é, û, à, and probably any non latin character.
whitelist of a few separator will be more unicode friendly.
The problem with \w is that in most implementation it is not unicode friendly.
You'll split on accented letters like é, û, à, and probably any non latin character.
Emacs has excellent Unicode support, and handles non-latin characters correctly.
Consider:
The first "*" is considered the beginning of the word instead of "g". This should be changed to group non-word non-space characters together as words.
See: #63
The text was updated successfully, but these errors were encountered: