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
how to ignore email entries when using @ token? Just use: delimiter: '(^|\\s)@' option. Please add it to description or fix issue right in plugin code.
The text was updated successfully, but these errors were encountered:
smilesrg
changed the title
How to ignore emails when using @ token?
Ignore emails when using @ token
Oct 19, 2014
That doesn't work when emptyQuery is set to true because that part of the check in _matcher is not based on a regular expression.
I found it easier to assume you simply use a single character as delimiter and you'd never want to match when there's a word-character in front of that delimiter.
See pull request: #52
how to ignore email entries when using @ token? Just use:
delimiter: '(^|\\s)@'
option. Please add it to description or fix issue right in plugin code.The text was updated successfully, but these errors were encountered: