/ duper-vs-code / language-configuration.json
language-configuration.json
1 { 2 "comments": { 3 "lineComment": "//", 4 "blockComment": ["/*", "*/"] 5 }, 6 "colorizedBracketPairs": [ 7 ["{", "}"], 8 ["[", "]"], 9 ["(", ")"] 10 ], 11 "autoClosingPairs": [ 12 { "open": "{", "close": "}", "notIn": ["string"] }, 13 { "open": "[", "close": "]", "notIn": ["string"] }, 14 { "open": "(", "close": ")", "notIn": ["string"] }, 15 { "open": "\"", "close": "\"", "notIn": ["string", "comment"] }, 16 { "open": "r#\"", "close": "\"#", "notIn": ["string", "comment"] }, 17 { "open": "r##\"", "close": "\"##", "notIn": ["string", "comment"] }, 18 { "open": "r###\"", "close": "\"###", "notIn": ["string", "comment"] }, 19 { "open": "r####\"", "close": "\"####", "notIn": ["string", "comment"] }, 20 { "open": "r#####\"", "close": "\"#####", "notIn": ["string", "comment"] }, 21 { "open": "b\"", "close": "\"", "notIn": ["string", "comment"] }, 22 { "open": "br#\"", "close": "\"#", "notIn": ["string", "comment"] }, 23 { "open": "br##\"", "close": "\"##", "notIn": ["string", "comment"] }, 24 { "open": "br###\"", "close": "\"###", "notIn": ["string", "comment"] }, 25 { "open": "br####\"", "close": "\"####", "notIn": ["string", "comment"] }, 26 { "open": "br#####\"", "close": "\"#####", "notIn": ["string", "comment"] }, 27 { "open": "/*", "close": "*/", "notIn": ["string"] } 28 ], 29 "surroundingPairs": [ 30 ["{", "}"], 31 ["[", "]"], 32 ["(", ")"], 33 ["\"", "\""] 34 ] 35 }