2015-11-13 21:39:38 +08:00
|
|
|
{
|
|
|
|
"comments": {
|
|
|
|
"lineComment": "#",
|
|
|
|
"blockComment": [ "###", "###" ]
|
|
|
|
},
|
|
|
|
"brackets": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"]
|
2016-04-16 17:55:47 +08:00
|
|
|
],
|
|
|
|
"autoClosingPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"],
|
2020-01-09 17:34:35 +08:00
|
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|
|
|
{ "open": "'", "close": "'", "notIn": ["string"] }
|
2016-04-16 17:55:47 +08:00
|
|
|
],
|
|
|
|
"surroundingPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"],
|
|
|
|
["\"", "\""],
|
2018-02-27 20:10:38 +08:00
|
|
|
["'", "'"],
|
|
|
|
[" ", " "]
|
2017-09-20 15:34:33 +08:00
|
|
|
],
|
|
|
|
"folding": {
|
2017-11-30 03:02:47 +08:00
|
|
|
"offSide": true,
|
|
|
|
"markers": {
|
|
|
|
"start": "^\\s*#region\\b",
|
|
|
|
"end": "^\\s*#endregion\\b"
|
|
|
|
}
|
2017-09-20 15:34:33 +08:00
|
|
|
}
|
2017-11-30 03:02:47 +08:00
|
|
|
}
|