I wrote that little snippet to help my workflow in Sublime Text 3:
<snippet>
<content><![CDATA[
(function ($) {"use strict";$(function () {$1});}(jQuery));
]]></content>
Optional: Tab trigger to activate the snippet
<tabTrigger>self.function</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.js</scope>
<!-- Optional: Description to show in the menu -->
<description>self.trigger.function</description>
</snippet>
The contextual menu display is when I start to type "self" in a javascript file, but when I hit "Enter", nothing is pasted to my file.
Any idea why that is?
Thanks