Is it possible to tell snippet it should be also triggered if i start typing after ‘.’ character?
Example:
if i type ’ each’ I get my snippet in completions list. If I type ‘.each’ I don’t 
And I have already added this to preferences:
"auto_complete_triggers": [ {"characters": ".", "selector": "source.js"}]
Snippet is written like this:
<snippet> <content><![CDATA[each(function(${1:i}) { $2 });]]> </content> <tabTrigger>each</tabTrigger> <description>.each</description> <scope>source.js</scope> </snippet>