Created
February 7, 2026 16:12
-
-
Save alexanderdombroski/11282cd8c01c1d068bdca94b06348e5c to your computer and use it in GitHub Desktop.
Snippets to create more snippets | Created using SnippetStudio
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
Show hidden characters
| { | |
| "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