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
Copy file name to clipboardExpand all lines: src/vs/platform/theme/common/tokenClassificationRegistry.ts
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -381,20 +381,21 @@ function registerDefaultClassifications(): void {
381
381
registerTokenType('parameterType',nls.localize('parameterType',"Style for parameter types."),undefined,'type');
382
382
383
383
registerTokenType('function',nls.localize('function',"Style for functions"),[['entity.name.function'],['support.function']]);
384
+
registerTokenType('member',nls.localize('member',"Style for member"),[['entity.name.function'],['support.function']]);
384
385
registerTokenType('macro',nls.localize('macro',"Style for macros."),undefined,'function');
385
386
386
387
registerTokenType('variable',nls.localize('variable',"Style for variables."),[['variable'],['entity.name.variable']]);
387
388
registerTokenType('constant',nls.localize('constant',"Style for constants."),undefined,'variable');
388
389
registerTokenType('parameter',nls.localize('parameter',"Style for parameters."),undefined,'variable');
389
-
registerTokenType('property',nls.localize('propertie',"Style for properties."),undefined,'variable');
390
+
registerTokenType('property',nls.localize('property',"Style for properties."),undefined,'variable');
390
391
391
392
registerTokenType('label',nls.localize('labels',"Style for labels. "),undefined);
392
393
393
394
// default token modifiers
394
395
395
396
tokenClassificationRegistry.registerTokenModifier('declaration',nls.localize('declaration',"Style for all symbol declarations."),undefined);
396
397
tokenClassificationRegistry.registerTokenModifier('documentation',nls.localize('documentation',"Style to use for references in documentation."),undefined);
397
-
tokenClassificationRegistry.registerTokenModifier('member',nls.localize('member',"Style to use for member functions, variables (fields) and types."),undefined);
398
+
//tokenClassificationRegistry.registerTokenModifier('member', nls.localize('member', "Style to use for member functions, variables (fields) and types."), undefined);
398
399
tokenClassificationRegistry.registerTokenModifier('static',nls.localize('static',"Style to use for symbols that are static."),undefined);
399
400
tokenClassificationRegistry.registerTokenModifier('abstract',nls.localize('abstract',"Style to use for symbols that are abstract."),undefined);
400
401
tokenClassificationRegistry.registerTokenModifier('deprecated',nls.localize('deprecated',"Style to use for symbols that are deprecated."),undefined);
0 commit comments