mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
45 lines
1.6 KiB
Plaintext
45 lines
1.6 KiB
Plaintext
{
|
|
// Each snippet is defined under a snippet name and has a scope, prefix, body and
|
|
// description. The scope defines in watch languages the snippet is applicable. The prefix is what is
|
|
// used to trigger the snippet and the body will be expanded and inserted.Possible variables are:
|
|
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
|
|
// Placeholders with the same ids are connected.
|
|
// Example:
|
|
"JavaScript, TypeScript Copyright Header": {
|
|
"scope": "javascript,typescript",
|
|
"prefix": [
|
|
"header",
|
|
"stub",
|
|
"copyright"
|
|
],
|
|
"body": [
|
|
"/*---------------------------------------------------------------------------------------------",
|
|
" * Copyright (c) Microsoft Corporation. All rights reserved.",
|
|
" * Licensed under the MIT License. See License.txt in the project root for license information.",
|
|
" *--------------------------------------------------------------------------------------------*/",
|
|
"",
|
|
"'use strict';",
|
|
"",
|
|
"$0"
|
|
],
|
|
"description": "Insert Copyright Statement"
|
|
},
|
|
"CSS Copyright Header": {
|
|
"scope": "css",
|
|
"prefix": [
|
|
"header",
|
|
"stub",
|
|
"copyright"
|
|
],
|
|
"body": [
|
|
"/*---------------------------------------------------------------------------------------------",
|
|
" * Copyright (c) Microsoft Corporation. All rights reserved.",
|
|
" * Licensed under the MIT License. See License.txt in the project root for license information.",
|
|
" *--------------------------------------------------------------------------------------------*/",
|
|
"",
|
|
"$0"
|
|
],
|
|
"description": "Insert Copyright Statement"
|
|
}
|
|
}
|