Skip to content

Instantly share code, notes, and snippets.

@philsinatra
Created August 15, 2013 15:38
Show Gist options
  • Save philsinatra/6241857 to your computer and use it in GitHub Desktop.
Save philsinatra/6241857 to your computer and use it in GitHub Desktop.
Sublime Text snippets
<snippet>
<content><![CDATA[
console.log(${1:log});
]]></content>
<tabTrigger>log</tabTrigger>
<scope>source.js</scope>
</snippet>
<snippet>
<content><![CDATA[
<img src="http://placehold.it/${1:width}x${2:height}">
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>ph</tabTrigger>
</snippet>
<snippet>
<content><![CDATA[
<img src="http://placekitten.com/${1:width}/${2:height}">
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>phk</tabTrigger>
</snippet>
<snippet>
<content><![CDATA[
window.alert(${1:alert});
]]></content>
<tabTrigger>alert</tabTrigger>
<scope>source.js</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment