2015-11-13 21:39:38 +08:00
|
|
|
{
|
|
|
|
"comments": {
|
|
|
|
"lineComment": "#"
|
|
|
|
},
|
|
|
|
"brackets": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"]
|
2016-04-22 04:49:45 +08:00
|
|
|
],
|
|
|
|
"autoClosingPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"],
|
2020-01-09 17:34:35 +08:00
|
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|
|
|
{ "open": "'", "close": "'", "notIn": ["string"] },
|
|
|
|
{ "open": "`", "close": "`", "notIn": ["string"] }
|
2016-04-22 04:49:45 +08:00
|
|
|
],
|
|
|
|
"surroundingPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"],
|
|
|
|
["\"", "\""],
|
|
|
|
["'", "'"],
|
|
|
|
["`", "`"]
|
2019-03-29 20:55:06 +08:00
|
|
|
],
|
|
|
|
"folding": {
|
|
|
|
"markers": {
|
2019-11-27 07:27:35 +08:00
|
|
|
"start": "^(?:(?:=pod\\s*$)|(?:\\s*#region\\b))",
|
|
|
|
"end": "^(?:(?:=cut\\s*$)|(?:\\s*#endregion\\b))"
|
2019-03-29 20:55:06 +08:00
|
|
|
}
|
|
|
|
}
|
2020-01-09 17:34:35 +08:00
|
|
|
}
|