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,6 @@
<snippet>
<content><![CDATA[\$location]]></content>
<tabTrigger>$</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.absUrl()]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location absUrl</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.hash()]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location hash get</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.hash '${1:hash}']]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location hash set</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.host()]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location host</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.path()]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location path get</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.path '${1:path}']]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location path set</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.port()]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location port</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.protocol()]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location protocol</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.replace()]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location replace</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.search()]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location search get</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.search ${1:'string'|Object(hash)}${2,${3:value-override-for-namedParameter}}]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location search set</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.url()]]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location url get</description>
</snippet>

View File

@@ -0,0 +1,6 @@
<snippet>
<content><![CDATA[\$location.url '${1:url-without-base-prefix}']]></content>
<tabTrigger>$location.</tabTrigger>
<scope>source.coffee</scope>
<description>Angular $location url set</description>
</snippet>