Skip to content

Instantly share code, notes, and snippets.

@dustinrouillard
Created March 15, 2019 11:07
Show Gist options
  • Save dustinrouillard/cde554bf2e47ed3051fbf724a8eb0a63 to your computer and use it in GitHub Desktop.
Save dustinrouillard/cde554bf2e47ed3051fbf724a8eb0a63 to your computer and use it in GitHub Desktop.
Visual Studio Code User Snippet to create snippets

If you have snippets that might conflict with another extensions snippets you can go into your vscode settings.json and add this line

"editor.snippetSuggestions": "top"
"Create Snippet": {
"prefix": "snip",
"body": [
"\"$0\": {",
"\t\"prefix\": \"\",",
"\t\"body\": [",
"\t],",
"\t\"description\": \"\"",
"}"
],
"description": "Create Snippet"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment