mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
e4c3ea2b5c
Fixes #183359
29 lines
425 B
JSON
29 lines
425 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "'"
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] }
|
|
],
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["<", ">"]
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*#Region\\b",
|
|
"end": "^\\s*#End Region\\b"
|
|
}
|
|
}
|
|
}
|