Sublime Snippet: JS Starter file
<snippet>
<content><![CDATA[
jQuery ( function(\$) {
var ${1} = new ${2}(\$);
${1}.init();
});
function ${2}(\$)
{
self.init = function()
{
${3}();
}
function ${3}(${4}) {
${5}
}
return self;
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>start_js</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.js</scope>
</snippet>