Last active
August 29, 2015 14:06
-
-
Save carlosperez/605f4f63e5d938e4694f to your computer and use it in GitHub Desktop.
A Sublime Text snippet shortcut for console.log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<snippet> | |
<content><![CDATA[ | |
console.log(${1}); | |
]]></content> | |
<tabTrigger>cl</tabTrigger> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Place this in
~/Library/Application Support/Sublime Text 2/Packages/User/
and then in a Sublime Text doc, hitcl <tab>
to populate it.