Skip to content

Instantly share code, notes, and snippets.

@funnierinspanish
Last active October 8, 2015 03:18
Show Gist options
  • Save funnierinspanish/e2aa163e3540240ee544 to your computer and use it in GitHub Desktop.
Save funnierinspanish/e2aa163e3540240ee544 to your computer and use it in GitHub Desktop.
Console.log Sublime Text 2 Snippet
<!--
* Sublime Text 2
* Inside Sublime go to
* Preferences -> Browse Packages
* Open the JavaScrip folder
* Save this snippet there with the .sublime-snippet file extension
* Sublime Text 3
* Tools > New Snippet > *Replace the content with this* > *Save right there where Sublime suggests*
-->
<snippet>
<content><![CDATA[console.log($1);]]></content>
<tabTrigger>c</tabTrigger>
<scope>source.js</scope>
<description>Log to the console</description>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment