Meteor-Community-Packages / meteor-autocomplete

Client/server autocompletion designed for Meteor's collections and reactivity.
https://atmospherejs.com/mizzao/autocomplete
MIT License
350 stars 109 forks source link

which token is supported ? #100

Open leizard opened 9 years ago

leizard commented 9 years ago

I found that autocomplete works fine with tokens such as: " ! ", "@" , ":" , "&" . But it can't recognize some token such as: "+" , " * " . where can I find the list of supported tokens ? Thank you.

mizzao commented 9 years ago

This is probably because those other tokens need to be escaped before being put in the autocomplete regex:

https://github.com/mizzao/meteor-autocomplete/blob/master/autocomplete-client.coffee#L23

Maybe you could add a PR to escape certain tokens properly before using them?

leizard commented 9 years ago

thank you for your reply. I will look further for string escape.

chazsolo commented 8 years ago

Also noted that "$" is not recognized. Any chance this is being worked on?