Created
November 1, 2021 19:56
-
-
Save alanvgreen/c029ec0abd3e69eec2134bcf997201d3 to your computer and use it in GitHub Desktop.
VsCode: Snippts for Snippets
This file contains 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
// Copyright 2021 Google LLC. | |
// SPDX-License-Identifier: Apache-2.0 | |
{ | |
// Very meta | |
"Snippet": { | |
"prefix": "snippet", | |
"description": "Add a new template to a snippet file", | |
"body": [ | |
"\"${1:Description in menu}\": {", | |
" \"prefix\": \"${2:name}\",", | |
" \"description\": \"${3:Long description}\",", | |
" \"body\": [", | |
" $0", | |
" ]", | |
"}" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment