When I create a trigger with periods in a *.sublime-completions file, those completions show up in the auto-complete list even if I only type part of the trigger.
For example, this completion:
{ "trigger": "Ext.Array.each", "contents": "this is a test" }
Will show up even if I only type “Array” or “each”.
But when I do the same thing in a snippet, using the following:
<tabTrigger>Ext.Array.each</tabTrigger>
It shows when I type “Ext”. If I then type a period, it’s gone from the autocomplete list, and it never shows up if I type “Array” or “each”.
Question:
How can I get the behavior of the *.sublime-completions file but still be able to use snippets so I can write multi-line completions without a headache?