12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "comments": {
- "lineComment": "#"
- },
- "brackets": [
- ["{", "}"],
- ["[", "]"],
- ["(", ")"]
- ],
- "autoClosingPairs": [
- { "open": "{", "close": "}" },
- { "open": "[", "close": "]" },
- { "open": "(", "close": ")" },
- { "open": "\"", "close": "\"", "notIn": ["string", "comment"] },
- { "open": "'", "close": "'", "notIn": ["string", "comment"] }
- ],
- "autoCloseBefore": ";:.,=}])>` \n\t",
- "surroundingPairs": [
- ["{", "}"],
- ["[", "]"],
- ["(", ")"],
- ["\"", "\""],
- ["'", "'"]
- ],
- "folding": {
- "offSide": true,
- "markers": {
- "start": "^\\s*#\\s*region\\b",
- "end": "^\\s*#\\s*endregion\\b"
- }
- },
- "onEnterRules": [
- {
- "beforeText": ":\\s*$",
- "action": {
- "indent": "indent"
- }
- }
- ]
- }
|