Created
April 13, 2023 09:43
-
-
Save eyssette/85746be9883fba40efa459ca95c2abb0 to your computer and use it in GitHub Desktop.
A VSCode snippet to create a new snippet
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
{ | |
"New Snippet": { | |
"prefix": "New Snippet", | |
"body": [ | |
"\"$1\": {", | |
"\t\"scope\": \"$2\",", | |
"\t\"prefix\": \"$3\",", | |
"\t\"body\": [\"$4\"],", | |
"\t\"description\": \"$5\"", | |
"}" | |
], | |
"description": "Create new snippet" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment