vscode/extensions/cpp/language-configuration.json

33 lines
613 B
JSON
Raw Normal View History

2015-11-13 13:39:38 +00:00
{
"comments": {
"lineComment": "//",
"blockComment": ["/*", "*/"]
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
{ "open": "[", "close": "]" },
{ "open": "{", "close": "}" },
{ "open": "(", "close": ")" },
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["<", ">"]
2017-07-26 00:17:06 +00:00
],
2017-09-22 12:04:32 +00:00
"folding": {
"markers": {
2017-10-12 14:55:08 +00:00
"start": "^\\s*#pragma\\s+region\\b",
"end": "^\\s*#pragma\\s+endregion\\b"
2017-09-22 12:04:32 +00:00
}
2017-07-26 00:17:06 +00:00
}
}