So, a snippet is composed of the following info:
<snippet>
<content><![CDATA[Type your snippet here]]></content>
<!-- Optional: Tab trigger to activate the snippet -->
<tabTrigger>for</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.python</scope>
<!-- Optional: Description to show in the menu -->
<description>for loop</description>
</snippet>
If I have a snippet for “for” in which the tab-trigger is “for”, and the description is “for loop”, I want auto-complete to also find the snippet if I type “loop”. Is this possible?