Last active
August 29, 2015 14:09
-
-
Save JayMc/93500cf46b2f78a9d8e2 to your computer and use it in GitHub Desktop.
Sublime Text javascript autocomplete starter
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
Show hidden characters
{ | |
"scope": "source.js", | |
"completions": | |
[ | |
{ "trigger": "console.log", "contents": "console.log(${1})" }, | |
{ "trigger": "console.table", "contents": "console.table(${1})" }, | |
{ "trigger": "console.dir", "contents": "console.dir(${1})" }, | |
{ "trigger": "iferr", "contents": "if(err){${1}}" } | |
] | |
} | |
//put me inside /Users/<username>/Library/Application Support/Sublime Text 2/Packages/User/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment