mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 11:10:48 +00:00
a291da4049
Fixes #25025
25 lines
No EOL
479 B
JSON
25 lines
No EOL
479 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "//",
|
|
"blockComment": ["/*", "*/"]
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
{ "open": "[", "close": "]" },
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] }
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"]
|
|
]
|
|
} |