Skip to content

Instantly share code, notes, and snippets.

@alanvgreen
Created November 1, 2021 19:56
Show Gist options
  • Save alanvgreen/c029ec0abd3e69eec2134bcf997201d3 to your computer and use it in GitHub Desktop.
Save alanvgreen/c029ec0abd3e69eec2134bcf997201d3 to your computer and use it in GitHub Desktop.
VsCode: Snippts for Snippets
// 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