feat(SublimeText2.WebPackages): cache packages

This commit is contained in:
Iristyle
2013-04-04 08:54:25 -04:00
parent 590d7a44f9
commit 1e6f643a1b
1026 changed files with 79077 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
<snippet>
<content><![CDATA[
after ->
$1
]]></content>
<!-- Optional: Tab trigger to activate the snippet -->
<tabTrigger>after</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.coffee</scope>
<!-- Optional: Description to show in the menu -->
<description>After</description>
</snippet>

View File

@@ -0,0 +1,12 @@
<snippet>
<content><![CDATA[
afterEach ->
$1
]]></content>
<!-- Optional: Tab trigger to activate the snippet -->
<tabTrigger>afte</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.coffee</scope>
<!-- Optional: Description to show in the menu -->
<description>After Each</description>
</snippet>

View File

@@ -0,0 +1,12 @@
<snippet>
<content><![CDATA[
before ->
$1
]]></content>
<!-- Optional: Tab trigger to activate the snippet -->
<tabTrigger>bef</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.coffee</scope>
<!-- Optional: Description to show in the menu -->
<description>Before</description>
</snippet>

View File

@@ -0,0 +1,12 @@
<snippet>
<content><![CDATA[
beforeEach ->
$1
]]></content>
<!-- Optional: Tab trigger to activate the snippet -->
<tabTrigger>befe</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.coffee</scope>
<!-- Optional: Description to show in the menu -->
<description>Before Each</description>
</snippet>

View File

@@ -0,0 +1,12 @@
<snippet>
<content><![CDATA[
describe "${1:suite}", ->
$2
]]></content>
<!-- Optional: Tab trigger to activate the snippet -->
<tabTrigger>des</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.coffee</scope>
<!-- Optional: Description to show in the menu -->
<description>Describe</description>
</snippet>

View File

@@ -0,0 +1,12 @@
<snippet>
<content><![CDATA[
it "${1:expectation}", ->
$2
]]></content>
<!-- Optional: Tab trigger to activate the snippet -->
<tabTrigger>it</tabTrigger>
<!-- Optional: Scope the tab trigger will be active in -->
<scope>source.coffee</scope>
<!-- Optional: Description to show in the menu -->
<description>It</description>
</snippet>