mirror of https://github.com/microsoft/vscode.git
Enable angle bracket colorization for C# (#247665)
This commit is contained in:
parent
03548f6645
commit
510359a9a6
|
@ -76,6 +76,24 @@
|
|||
"\""
|
||||
]
|
||||
],
|
||||
"colorizedBracketPairs": [
|
||||
[
|
||||
"{",
|
||||
"}"
|
||||
],
|
||||
[
|
||||
"[",
|
||||
"]"
|
||||
],
|
||||
[
|
||||
"(",
|
||||
")"
|
||||
],
|
||||
[
|
||||
"<",
|
||||
">"
|
||||
]
|
||||
],
|
||||
"folding": {
|
||||
"markers": {
|
||||
"start": "^\\s*#region\\b",
|
||||
|
|
|
@ -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": [
|
||||
|
|
Loading…
Reference in New Issue