mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 21:06:57 +00:00
31 lines
532 B
JSON
31 lines
532 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "",
|
|
"blockComment": ["<!--", "-->"]
|
|
},
|
|
"brackets": [
|
|
["<", ">"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["<", ">"],
|
|
["'", "'"],
|
|
["\"", "\""]
|
|
],
|
|
"surroundingPairs": [
|
|
["<", ">"],
|
|
["'", "'"],
|
|
["\"", "\""]
|
|
]
|
|
|
|
// enhancedBrackets: [{
|
|
// tokenType: 'tag.tag-$1.xml',
|
|
// openTrigger: '>',
|
|
// open: /<(\w[\w\d]*)([^\/>]*(?!\/)>)[^<>]*$/i,
|
|
// closeComplete: '</$1>',
|
|
// closeTrigger: '>',
|
|
// close: /<\/(\w[\w\d]*)\s*>$/i
|
|
// }],
|
|
|
|
// autoClosingPairs: [['\'', '\''], ['"', '"'] ]
|
|
|
|
}
|