2020-12-12 00:31:00 +00:00
|
|
|
{
|
|
|
|
"comments": {
|
|
|
|
"lineComment": "//",
|
2022-05-17 17:15:06 +00:00
|
|
|
"blockComment": ["/*", "*/"]
|
2020-12-12 00:31:00 +00:00
|
|
|
},
|
|
|
|
"brackets": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
2022-04-20 14:43:24 +00:00
|
|
|
["(", ")"]
|
2020-12-12 00:31:00 +00:00
|
|
|
],
|
2021-09-09 04:25:38 +00:00
|
|
|
"colorizedBracketPairs": [
|
2022-05-17 17:15:06 +00:00
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"]
|
|
|
|
],
|
2020-12-12 00:31:00 +00:00
|
|
|
"autoClosingPairs": [
|
|
|
|
{ "open": "{", "close": "}" },
|
|
|
|
{ "open": "[", "close": "]" },
|
|
|
|
{ "open": "(", "close": ")" },
|
|
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
2023-09-26 06:31:16 +00:00
|
|
|
{ "open": "/*", "close": " */" },
|
|
|
|
{ "open": "`", "close": "`", "notIn": ["string"] }
|
2020-12-12 00:31:00 +00:00
|
|
|
],
|
|
|
|
"autoCloseBefore": ";:.,=}])> \n\t",
|
|
|
|
"surroundingPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"],
|
|
|
|
["<", ">"],
|
|
|
|
["\"", "\""],
|
2023-09-26 06:31:16 +00:00
|
|
|
["'", "'"],
|
|
|
|
["`", "`"]
|
2020-12-12 00:31:00 +00:00
|
|
|
],
|
|
|
|
"indentationRules": {
|
|
|
|
"increaseIndentPattern": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$",
|
|
|
|
"decreaseIndentPattern": "^\\s*(\\s*\\/[*].*[*]\\/\\s*)*[})]"
|
|
|
|
},
|
|
|
|
"folding": {
|
|
|
|
"markers": {
|
2023-02-05 01:46:11 +00:00
|
|
|
"start": "^\\s*// region:\\b",
|
|
|
|
"end": "^\\s*// endregion\\b"
|
2020-12-12 00:31:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|