Enable angle bracket colorization for C# (#247665)

This commit is contained in:
David Barbet 2025-07-26 07:06:27 -07:00 committed by GitHub
parent 03548f6645
commit 510359a9a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 26 additions and 1 deletions

View File

@ -76,6 +76,24 @@
"\""
]
],
"colorizedBracketPairs": [
[
"{",
"}"
],
[
"[",
"]"
],
[
"(",
")"
],
[
"<",
">"
]
],
"folding": {
"markers": {
"start": "^\\s*#region\\b",

View File

@ -40,7 +40,14 @@
"path": "./syntaxes/csharp.tmLanguage.json",
"tokenTypes": {
"meta.interpolation": "other"
}
},
"unbalancedBracketScopes": [
"keyword.operator.relational.cs",
"keyword.operator.arrow.cs",
"punctuation.accessor.pointer.cs",
"keyword.operator.bitwise.shift.cs",
"keyword.operator.assignment.compound.bitwise.cs"
]
}
],
"snippets": [