mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
added tiled level support
This commit is contained in:
parent
83e78a5732
commit
3782fa345b
13 changed files with 113 additions and 39 deletions
18
snippets/sublime/js-define-child.sublime-snippet
Normal file
18
snippets/sublime/js-define-child.sublime-snippet
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<snippet>
|
||||
<content><![CDATA[
|
||||
define([
|
||||
"${1:Path}"
|
||||
],
|
||||
|
||||
function (Parent) {
|
||||
|
||||
return Parent;
|
||||
|
||||
});
|
||||
]]></content>
|
||||
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
|
||||
<tabTrigger>defc</tabTrigger>
|
||||
<!-- Optional: Set a scope to limit where the snippet will trigger -->
|
||||
<scope>source.js</scope>
|
||||
<description>define(Child) - create a new empty child require.js module</description>
|
||||
</snippet>
|
||||
Loading…
Add table
Add a link
Reference in a new issue