You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Value Type (C++/CLI) | entity.name.type.class.value |
48
48
49
49
Many of the tokens recognized by IntelliSense do not directly map to existing scopes in the VS Code's default C/C++ TextMate grammar, so are likely not colored by existing VS Code themes.
50
50
@@ -55,7 +55,7 @@ Colors can also be overridden globally, in settings:
55
55
"editor.tokenColorCustomizations": {
56
56
"textMateRules": [
57
57
{
58
-
"scope": "entity.name.type",
58
+
"scope": "entity.name.type.class",
59
59
"settings": {
60
60
"foreground": "#FF0000",
61
61
"fontStyle": "italic bold underline"
@@ -70,7 +70,7 @@ Or, overridden on a per-theme basis:
70
70
"[Visual Studio Dark]": {
71
71
"textMateRules": [
72
72
{
73
-
"scope": "entity.name.type",
73
+
"scope": "entity.name.type.class",
74
74
"settings": {
75
75
"foreground": "#FF0000",
76
76
"fontStyle": "italic bold underline"
@@ -171,19 +171,19 @@ Use the following to augment the Visual Studio Dark theme to match what Visual S
171
171
}
172
172
},
173
173
{
174
-
"scope": "entity.name.type",
174
+
"scope": "entity.name.type.class",
175
175
"settings": {
176
176
"foreground": "#4EC9B0"
177
177
}
178
178
},
179
179
{
180
-
"scope": "entity.name.class.reference",
180
+
"scope": "entity.name.type.class.reference",
181
181
"settings": {
182
182
"foreground": "#4EC9B0"
183
183
}
184
184
},
185
185
{
186
-
"scope": "entity.name.class.value",
186
+
"scope": "entity.name.type.class.value",
187
187
"settings": {
188
188
"foreground": "#4EC9B0"
189
189
}
@@ -201,7 +201,7 @@ Use the following to augment the Visual Studio Dark theme to match what Visual S
201
201
}
202
202
},
203
203
{
204
-
"scope": "variable.other.member",
204
+
"scope": "variable.other.property",
205
205
"settings": {
206
206
"foreground": "#DADADA"
207
207
}
@@ -213,7 +213,7 @@ Use the following to augment the Visual Studio Dark theme to match what Visual S
213
213
}
214
214
},
215
215
{
216
-
"scope": "variable.other.member.static",
216
+
"scope": "variable.other.property.static",
217
217
"settings": {
218
218
"foreground": "#C8C8C8"
219
219
}
@@ -225,19 +225,19 @@ Use the following to augment the Visual Studio Dark theme to match what Visual S
225
225
}
226
226
},
227
227
{
228
-
"scope": "entity.name.class.template",
228
+
"scope": "entity.name.type.class.templated",
229
229
"settings": {
230
230
"foreground": "#4EC9B0"
231
231
}
232
232
},
233
233
{
234
-
"scope": "entity.name.class.generic",
234
+
"scope": "entity.name.type.class.generic",
235
235
"settings": {
236
236
"foreground": "#4EC9B0"
237
237
}
238
238
},
239
239
{
240
-
"scope": "entity.name.function.template",
240
+
"scope": "entity.name.function.templated",
241
241
"settings": {
242
242
"foreground": "#C8C8C8"
243
243
}
@@ -255,19 +255,19 @@ Use the following to augment the Visual Studio Dark theme to match what Visual S
0 commit comments