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,9 @@
<snippet>
<content><![CDATA[<blockquote${1: cite="${2:http://example.com/facts}"}>
<p>$3</p>
</blockquote>$0]]></content>
<tabTrigger>blockquote</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;blockquote&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,7 @@
<snippet>
<content><![CDATA[<dd>$1</dd>$0]]></content>
<tabTrigger>dd</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;dd&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,10 @@
<snippet>
<content><![CDATA[<div$1>
$2
</div>$0]]></content>
<tabTrigger>div</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;div&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,10 @@
<snippet>
<content><![CDATA[<dl>
<dt>$1</dt>
<dd>$2</dd>
</dl>$0]]></content>
<tabTrigger>dl</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;dl&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,7 @@
<snippet>
<content><![CDATA[<dt>$1</dt>$0]]></content>
<tabTrigger>dt</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;dt&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,7 @@
<snippet>
<content><![CDATA[<hr>$0]]></content>
<tabTrigger>hr</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;hr&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,7 @@
<snippet>
<content><![CDATA[<li>$1</li>$0]]></content>
<tabTrigger>li</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;li&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,9 @@
<snippet>
<content><![CDATA[<ol$1>
<li>$2</li>$3
</ol>$0]]></content>
<tabTrigger>ol</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;ol&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,9 @@
<snippet>
<content><![CDATA[<pre>
$1
</pre>$0]]></content>
<tabTrigger>pre</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;pre&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,9 @@
<snippet>
<content><![CDATA[<ul$1>
<li>$2</li>$3
</ul>$0]]></content>
<tabTrigger>ul</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;ul&gt;</description>
<scope>text.html</scope>
</snippet>