2020-12-11 18:31:00 -06:00
|
|
|
{
|
|
|
|
"comments": {
|
|
|
|
"lineComment": "//",
|
|
|
|
"blockComment": ["/*", "*/"]
|
|
|
|
},
|
|
|
|
"brackets": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
2024-01-30 12:46:00 -06:00
|
|
|
["(", ")"]
|
2020-12-11 18:31:00 -06:00
|
|
|
],
|
2021-09-08 23:25:38 -05:00
|
|
|
"colorizedBracketPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"]
|
|
|
|
],
|
2020-12-11 18:31:00 -06:00
|
|
|
"autoClosingPairs": [
|
|
|
|
{ "open": "{", "close": "}" },
|
|
|
|
{ "open": "[", "close": "]" },
|
|
|
|
{ "open": "(", "close": ")" },
|
|
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
2024-03-12 07:44:35 -05:00
|
|
|
{ "open": "/*", "close": " */", "notIn": ["string"] },
|
2023-09-26 01:31:16 -05:00
|
|
|
{ "open": "`", "close": "`", "notIn": ["string"] }
|
2020-12-11 18:31:00 -06:00
|
|
|
],
|
|
|
|
"autoCloseBefore": ";:.,=}])> \n\t",
|
|
|
|
"surroundingPairs": [
|
|
|
|
["{", "}"],
|
|
|
|
["[", "]"],
|
|
|
|
["(", ")"],
|
|
|
|
["<", ">"],
|
|
|
|
["\"", "\""],
|
2023-09-26 01:31:16 -05:00
|
|
|
["'", "'"],
|
|
|
|
["`", "`"]
|
2020-12-11 18:31:00 -06:00
|
|
|
],
|
|
|
|
"indentationRules": {
|
|
|
|
"increaseIndentPattern": "^.*\\{[^}\"']*$|^.*\\([^\\)\"']*$",
|
|
|
|
"decreaseIndentPattern": "^\\s*(\\s*\\/[*].*[*]\\/\\s*)*[})]"
|
|
|
|
},
|
|
|
|
"folding": {
|
|
|
|
"markers": {
|
2023-02-04 19:46:11 -06:00
|
|
|
"start": "^\\s*// region:\\b",
|
|
|
|
"end": "^\\s*// endregion\\b"
|
2020-12-11 18:31:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|