Last active
October 8, 2015 03:18
-
-
Save funnierinspanish/e2aa163e3540240ee544 to your computer and use it in GitHub Desktop.
Console.log Sublime Text 2 Snippet
This file contains hidden or 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
<!-- | |
* 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