Last active
September 20, 2021 01:52
-
-
Save MonteLogic/f9ba917a175888fb4a41e21aca142727 to your computer and use it in GitHub Desktop.
snippets used in vsCode
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
{ | |
"Print to console": { | |
"prefix": "log", | |
"body": [ | |
"console.log('$1');", | |
"$2" | |
], | |
"description": "Log output to console" | |
}, | |
"Print Comments": { | |
"prefix": "cmnt", | |
"body": [ | |
"/** @param Type var Description */", | |
], | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment