support for my own vscode snippets

This commit is contained in:
2022-07-08 23:41:37 +02:00
parent 5d4cf9bfdc
commit 3b3bc5b937
4 changed files with 33 additions and 0 deletions

19
my-snippets/package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "my-snippets",
"contributes": {
"snippets": [
{
"language": [
"all"
],
"path": "all.json"
},
{
"language": [
"cpp"
],
"path": "cpp.json"
}
]
}
}