diff --git a/language-configuration.json b/language-configuration.json index e0c6ae12..45481a0e 100644 --- a/language-configuration.json +++ b/language-configuration.json @@ -3,20 +3,22 @@ "lineComment": "//" }, "wordPattern": "(`[^`]+`)|([a-zA-Z$_][a-zA-Z0-9$_]*)", - // symbols used as brackets "brackets": [ ["{", "}"], ["[", "]"], ["(", ")"] ], - // symbols that are auto closed when typing + "colorizedBracketPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"] + ], "autoClosingPairs": [ ["{", "}"], ["[", "]"], ["(", ")"], ["\"", "\""] ], - // symbols that can be used to surround a selection "surroundingPairs": [ ["{", "}"], ["[", "]"], @@ -31,5 +33,11 @@ "appendText": "/// " } } - ] + ], + "folding": { + "markers": { + "start": "^\\s*// region:\\b", + "end": "^\\s*// endregion\\b" + } + } }