47 lines
956 B
JSON
47 lines
956 B
JSON
{
|
|
"comments": {
|
|
"lineComment": "//"
|
|
},
|
|
"brackets": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["<", ">"]
|
|
],
|
|
"autoClosingPairs": [
|
|
{ "open": "{", "close": "}" },
|
|
{ "open": "[", "close": "]" },
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "\"", "close": "\"", "notIn": ["string"] },
|
|
{ "open": "'", "close": "'", "notIn": ["string"] },
|
|
{ "open": "<", "close": ">" }
|
|
],
|
|
"autoCloseBefore": ";:.,=}])> \n\t",
|
|
"surroundingPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"],
|
|
["\"", "\""],
|
|
["'", "'"],
|
|
["<", ">"]
|
|
],
|
|
"colorizedBracketPairs": [
|
|
["{", "}"],
|
|
["[", "]"],
|
|
["(", ")"]
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*//\\s*#region\\b",
|
|
"end": "^\\s*//\\s*#endregion\\b"
|
|
}
|
|
},
|
|
"onEnterRules": [
|
|
{
|
|
"beforeText": "^\\s*//.*$",
|
|
"action": { "indent": "none", "appendText": "// " }
|
|
}
|
|
],
|
|
"wordPattern": "[A-Za-z_][A-Za-z0-9_-]*"
|
|
}
|