Skip to content

Instantly share code, notes, and snippets.

<snippet>
<content><![CDATA[
<img src="http://placehold.it/${1:500x500}&text=${2:Placeholder}">
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>place</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<!-- <scope>source.css</scope> -->
</snippet>
@EastendLab
EastendLab / console-log.sublime-snippet
Created April 4, 2013 13:42
SUBLIME SNIPPET: console.log
<snippet>
<content><![CDATA[console.log('$1 -> ', $2);$0]]></content>
<tabTrigger>log</tabTrigger>
<scope>text.html,source.js</scope>
<description>console.log()</description>
</snippet>