Skip to content

Instantly share code, notes, and snippets.

@thollingshead
Created February 4, 2016 19:11
Show Gist options
  • Save thollingshead/24f78e29bacb5467a3de to your computer and use it in GitHub Desktop.
Save thollingshead/24f78e29bacb5467a3de to your computer and use it in GitHub Desktop.
Sublime snippet for Dojo module boilerplate.
<snippet>
<content><![CDATA[
define([
${1:'dojo/_base/declare'}
], function(
${2:declare}
) {
return declare([$3], {
$4
});
});
]]></content>
<tabTrigger>define()</tabTrigger>
<scope>source.js</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment