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
Non-alphanumeric characters are not highlighted in the project or context.
(e.g. É, й, 漢)
I think that it should be modified as follows.
-AppConstants.PROJECT_REGEX = new RegExp(/\B\+\w+/g);-AppConstants.CONTEXT_REGEX = new RegExp(/\B\@\w+/g);+AppConstants.PROJECT_REGEX = new RegExp(/\B\+[^+@\s]+/g);+AppConstants.CONTEXT_REGEX = new RegExp(/\B\@[^+@\s]+/g);
The text was updated successfully, but these errors were encountered:
hello,
Non-alphanumeric characters are not highlighted in the project or context.
(e.g. É, й, 漢)
I think that it should be modified as follows.
The text was updated successfully, but these errors were encountered: