Skip to content

Instantly share code, notes, and snippets.

@tjunussov
Created June 13, 2017 05:52
Show Gist options
  • Save tjunussov/05c979c02719468bfb010598a09317f4 to your computer and use it in GitHub Desktop.
Save tjunussov/05c979c02719468bfb010598a09317f4 to your computer and use it in GitHub Desktop.
console.log, console.dir
<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