Created
June 13, 2017 05:52
-
-
Save tjunussov/05c979c02719468bfb010598a09317f4 to your computer and use it in GitHub Desktop.
console.log, console.dir
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
<snippet> | |
<!-- put this file in /packages/User/<Folder Name>/console_log.sublime-snippet then restart your Sublime Text 2 --> | |
<content><![CDATA[console.log($1);$0]]></content> | |
<tabTrigger>cl</tabTrigger> | |
<scope>text.html,source.js</scope> | |
<description>console.log()</description> | |
</snippet> | |
<snippet> | |
<!-- put this in another file /packages/User/<Folder Name>/console_dir.sublime-snippet then restart your Sublime Text 2 --> | |
<content><![CDATA[console.dir($1);$0]]></content> | |
<tabTrigger>cd</tabTrigger> | |
<scope>text.html,source.js</scope> | |
<description>console.dir()</description> | |
</snippet> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment