Skip to content

Instantly share code, notes, and snippets.

@andrew-codechimp
Created August 10, 2020 14:47
Show Gist options
  • Save andrew-codechimp/0f80e0517c4a2ad18478bdc2020f66d1 to your computer and use it in GitHub Desktop.
Save andrew-codechimp/0f80e0517c4a2ad18478bdc2020f66d1 to your computer and use it in GitHub Desktop.
VS Code Language Snippet Creation
{
"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