33 lines
613 B
JSON
33 lines
613 B
JSON
|
{
|
||
|
"comments": {
|
||
|
"lineComment": "//",
|
||
|
"blockComment": ["/*", "*/"]
|
||
|
},
|
||
|
"brackets": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"]
|
||
|
],
|
||
|
"autoClosingPairs": [
|
||
|
{ "open": "[", "close": "]" },
|
||
|
{ "open": "{", "close": "}" },
|
||
|
{ "open": "(", "close": ")" },
|
||
|
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
|
||
|
{ "open": "\"", "close": "\"", "notIn": ["string"] }
|
||
|
],
|
||
|
"surroundingPairs": [
|
||
|
["{", "}"],
|
||
|
["[", "]"],
|
||
|
["(", ")"],
|
||
|
["\"", "\""],
|
||
|
["'", "'"],
|
||
|
["<", ">"]
|
||
|
],
|
||
|
"folding": {
|
||
|
"markers": {
|
||
|
"start": "^\\s*#pragma\\s+region\\b",
|
||
|
"end": "^\\s*#pragma\\s+endregion\\b"
|
||
|
}
|
||
|
}
|
||
|
}
|