feat(SublimeText2.WebPackages): cache packages
This commit is contained in:
@@ -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>
|
@@ -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>
|
@@ -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>
|
@@ -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>
|
@@ -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>
|
@@ -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>
|
Reference in New Issue
Block a user