Created
August 10, 2020 14:47
-
-
Save andrew-codechimp/0f80e0517c4a2ad18478bdc2020f66d1 to your computer and use it in GitHub Desktop.
VS Code Language Snippet Creation
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
{ | |
"if": { | |
"prefix": "if", | |
"body": "if (${1:condition}) {\n\t$0\n}\n", | |
"description": "An if statement" | |
}, | |
"for": { | |
"prefix": "for", | |
"body": "for my \\$$1 (@\\$$2) {\n\t$0\n}\n", | |
"description": "A for statement" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment