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,7 @@
<snippet>
<content><![CDATA[<area href="$1"${2:${3: alt="$4"${5: target="$6"}${7: rel="$8"}${9: media="$10"}${11: type="$12"}}}>$0]]></content>
<tabTrigger>area</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;area&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,16 @@
<snippet>
<content><![CDATA[<audio${1:${2: autobuffer}${3: autoloop}${4: loop}${5: controls}}>
<source src="${6:/media/audio.oga}"${TM_POLYGLOT}>
<source src="${7:/media/audio.wav}"${TM_POLYGLOT}>
<object type="audio/x-wav" data="${7:/media/audio.wav}" width="${8:290}" height="${9:45}">
<param name="src" value="$7"${TM_POLYGLOT}>
<param name="autoplay" value="${10:false}"${TM_POLYGLOT}>
<param name="autoStart" value="${11:0}"${TM_POLYGLOT}>
${12:<p><a href="$7">${13:Download this audio file.}</a></p>}
</object>
</audio>$0]]></content>
<tabTrigger>audio</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;audio&gt; with legacy object</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,7 @@
<snippet>
<content><![CDATA[<audio src="$1"${2:${3: autobuffer}${4: autoloop}${5: loop}${6: controls}}></audio>$0]]></content>
<tabTrigger>audio</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;audio&gt;</description>
<scope>text.html</scope>
</snippet>

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,11 @@
<snippet>
<content><![CDATA[
<figure>
${1:<figcaption>${2:explanatory caption}</figcaption>}
$3
</figure>$0]]></content>
<tabTrigger>figure</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;figure&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,7 @@
<snippet>
<content><![CDATA[<iframe src="$1"${2: sandbox${3:="${4:allow-same-origin allow-forms allow-scripts}"}}$${5: seamless}></iframe>$0]]></content>
<tabTrigger>iframe</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;iframe&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,7 @@
<snippet>
<content><![CDATA[
<img src="$1" alt="$2">$0]]></content>
<scope>source.php,text.html</scope>
<tabTrigger>img</tabTrigger>
<scope>text.html</scope>
</snippet>

View File

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

View File

@@ -0,0 +1,12 @@
<snippet>
<content><![CDATA[
<object type="$1" data="$2" width="${3:290}" height="${4:45}">
<param name="src" value="$5">
<param name="autoplay" value="${6:false}">
<param name="autoStart" value="${7:0}">
</object>$0]]></content>
<tabTrigger>object</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;object&gt;</description>
<scope>text.html</scope>
</snippet>

View File

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

View File

@@ -0,0 +1,7 @@
<snippet>
<content><![CDATA[<source src="$1"${2:${3: type="$4"}${5: media="$6"}}>$0]]></content>
<tabTrigger>source</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;source&gt;</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,17 @@
<snippet>
<content><![CDATA[
<video${1:${2: autobuffer}${3: autoloop}${4: loop}${5: controls}}>
<source src="${6:/media/video.oga}"${TM_POLYGLOT}>
<source src="${7:/media/video.m4v}"${TM_POLYGLOT}>
<object type="video/ogg" data="$6" width="${8:320}" height="${9:240}">
<param name="src" value="$6"${TM_POLYGLOT}>
<param name="autoplay" value="${10:false}"${TM_POLYGLOT}>
<param name="autoStart" value="${11:0}"${TM_POLYGLOT}>
${12:<p><a href="$6">${13:Download this video file.}</a></p>}
</object>
</video>$0]]></content>
<tabTrigger>video</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;video&gt; with legacy object</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,7 @@
<snippet>
<content><![CDATA[<video src="$1"${2:${3: autobuffer}${4: autoloop}${5: loop}${6: controls}${7: poster="${8:/images/video.png}"}}></video>$0]]></content>
<tabTrigger>video</tabTrigger>
<scope>source.php,text.html</scope>
<description>&lt;video&gt;</description>
<scope>text.html</scope>
</snippet>