Skip to content

Instantly share code, notes, and snippets.

@ahaywood
Last active August 29, 2015 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahaywood/8dedcac32dd5cf9f4b73 to your computer and use it in GitHub Desktop.
Save ahaywood/8dedcac32dd5cf9f4b73 to your computer and use it in GitHub Desktop.
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment