Skip to content

Instantly share code, notes, and snippets.

@alexanderdombroski
Created February 7, 2026 16:12
Show Gist options
  • Select an option

  • Save alexanderdombroski/11282cd8c01c1d068bdca94b06348e5c to your computer and use it in GitHub Desktop.

Select an option

Save alexanderdombroski/11282cd8c01c1d068bdca94b06348e5c to your computer and use it in GitHub Desktop.
Snippets to create more snippets | Created using SnippetStudio
{
"language-snippet": {
"prefix": "snippet",
"body": [
"\"${1:id}\": {",
" \"prefix\": \"${2:prefix}\",",
" \"body\": [",
" \"$3\"",
" ],",
" \"description\": \"$4\"",
"}"
],
"description": "Creates a new user snippet in a <lang>.json file",
"include": "*.json",
"scope": "snippets"
},
"user-snippet": {
"prefix": "snippet",
"body": [
"\"${1:id}\": {",
" \"prefix\": \"${2:prefix}\",",
" \"body\": [",
" \"$3\"",
" ],",
" \"description\": \"$4\",",
" \"scope\": \"$5\"",
"}"
],
"description": "Creates a new user snippet in a .code-snippets file",
"include": "*.code-snippets",
"scope": "snippets"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment