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,11 @@
<snippet>
<content><![CDATA[
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante venenatis.</p>
<small>Someone famous in <cite title="">Body of work</cite></small>
</blockquote>
]]></content>
<tabTrigger>tbblockquote</tabTrigger>
<description>Bootstrap default blockquote</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn btn-danger" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton:d</tabTrigger>
<description>Bootstrap danger button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn btn-info" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton:i</tabTrigger>
<description>Bootstrap info button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn btn-inverse" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton:i</tabTrigger>
<description>Bootstrap inverse button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn btn-large" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton:large</tabTrigger>
<description>Bootstrap large button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn btn-danger">${2:Link}</a>
]]></content>
<tabTrigger>tblink:d</tabTrigger>
<description>Bootstrap danger link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn btn-info">${2:Link}</a>
]]></content>
<tabTrigger>tblink:i</tabTrigger>
<description>Bootstrap info link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn btn-inverse">${2:Link}</a>
]]></content>
<tabTrigger>tblink:i</tabTrigger>
<description>Bootstrap inverse link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn btn-large">${2:Link}</a>
]]></content>
<tabTrigger>tblink:l</tabTrigger>
<description>Bootstrap large link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn btn-mini">${2:Link}</a>
]]></content>
<tabTrigger>tblink:m</tabTrigger>
<description>Bootstrap mini link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn btn-primary">${2:Link}</a>
]]></content>
<tabTrigger>tblink:p</tabTrigger>
<description>Bootstrap primary link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn btn-small">${2:Link}</a>
]]></content>
<tabTrigger>tblink:s</tabTrigger>
<description>Bootstrap small link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn btn-success">${2:Link}</a>
]]></content>
<tabTrigger>tblink:s</tabTrigger>
<description>Bootstrap success link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn btn-warning">${2:Link}</a>
]]></content>
<tabTrigger>tblink:w</tabTrigger>
<description>Bootstrap warning link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<a href="${1:#}" class="btn">${2:Link}</a>
]]></content>
<tabTrigger>tbbutton</tabTrigger>
<description>Bootstrap default link button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn btn-mini" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton:mini</tabTrigger>
<description>Bootstrap mini button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn btn-primary" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton:p</tabTrigger>
<description>Bootstrap primary button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn btn-small" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton:small</tabTrigger>
<description>Bootstrap small button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn btn-success" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton:s</tabTrigger>
<description>Bootstrap success button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn btn-warning" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton:w</tabTrigger>
<description>Bootstrap warning button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
<button class="btn" type="submit">${1:Button}</button>
]]></content>
<tabTrigger>tbbutton</tabTrigger>
<description>Bootstrap default button</description>
<scope>text.html</scope>
</snippet>

View File

@@ -0,0 +1,68 @@
<snippet>
<content><![CDATA[
<form class="form-horizontal">
<fieldset>
<legend>Controls Bootstrap supports</legend>
<div class="control-group">
<label class="control-label" for="input01">Text input</label>
<div class="controls">
<input type="text" class="input-xlarge" id="input01">
<p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p>
</div>
</div>
<div class="control-group">
<label class="control-label" for="optionsCheckbox">Checkbox</label>
<div class="controls">
<label class="checkbox">
<input type="checkbox" id="optionsCheckbox" value="option1">
Option one is this and that—be sure to include why it's great
</label>
</div>
</div>
<div class="control-group">
<label class="control-label" for="select01">Select list</label>
<div class="controls">
<select id="select01">
<option>something</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="control-group">
<label class="control-label" for="multiSelect">Multicon-select</label>
<div class="controls">
<select multiple="multiple" id="multiSelect">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
</div>
<div class="control-group">
<label class="control-label" for="fileInput">File input</label>
<div class="controls">
<input class="input-file" id="fileInput" type="file">
</div>
</div>
<div class="control-group">
<label class="control-label" for="textarea">Textarea</label>
<div class="controls">
<textarea class="input-xlarge" id="textarea" rows="3"></textarea>
</div>
</div>
<div class="form-actions">
<button type="submit" class="btn btn-primary">Save changes</button>
<button class="btn">Cancel</button>
</div>
</fieldset>
</form>
]]></content>
<tabTrigger>tbform:h</tabTrigger>
<description>Bootstrap horizontal form</description>
<scope>text.html</scope>
</snippet>