2015-11-13 21:39:38 +08:00
|
|
|
{
|
|
|
|
"comments": {
|
|
|
|
"lineComment": "//",
|
|
|
|
"blockComment": ["/*", "*/"]
|
|
|
|
},
|
|
|
|
"brackets": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"]
|
2016-04-22 04:25:04 +08:00
|
|
|
],
|
|
|
|
"autoClosingPairs": [
|
2017-04-21 06:21:42 +08:00
|
|
|
{ "open": "[", "close": "]" },
|
|
|
|
{ "open": "{", "close": "}" },
|
|
|
|
{ "open": "(", "close": ")" },
|
|
|
|
{ "open": "'", "close": "'", "notIn": ["string", "comment"] },
|
2019-07-29 19:06:03 +08:00
|
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] }
|
2016-04-22 04:25:04 +08:00
|
|
|
],
|
|
|
|
"surroundingPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"],
|
|
|
|
["\"", "\""],
|
2018-04-19 04:20:32 +08:00
|
|
|
["'", "'"],
|
|
|
|
["<", ">"]
|
2017-07-26 08:17:06 +08:00
|
|
|
],
|
2021-04-27 04:07:56 +08:00
|
|
|
"wordPattern": "(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\@\\#\\%\\^\\&\\*\\(\\)\\-\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\/\\?\\s]+)",
|
2017-09-22 20:04:32 +08:00
|
|
|
"folding": {
|
|
|
|
"markers": {
|
2017-10-12 22:55:08 +08:00
|
|
|
"start": "^\\s*#pragma\\s+region\\b",
|
|
|
|
"end": "^\\s*#pragma\\s+endregion\\b"
|
2017-09-22 20:04:32 +08:00
|
|
|
}
|
2017-07-26 08:17:06 +08:00
|
|
|
}
|
2019-07-29 19:06:03 +08:00
|
|
|
}
|