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
@@ -422,18 +460,20 @@ function registerDefaultClassifications(): void {
422
460
423
461
// default token modifiers
424
462
425
-
tokenClassificationRegistry.registerTokenModifier('declaration',nls.localize('declaration',"Style for all symbol declarations."),undefined);
426
-
tokenClassificationRegistry.registerTokenModifier('documentation',nls.localize('documentation',"Style to use for references in documentation."),undefined);
427
-
tokenClassificationRegistry.registerTokenModifier('static',nls.localize('static',"Style to use for symbols that are static."),undefined);
428
-
tokenClassificationRegistry.registerTokenModifier('abstract',nls.localize('abstract',"Style to use for symbols that are abstract."),undefined);
429
-
tokenClassificationRegistry.registerTokenModifier('deprecated',nls.localize('deprecated',"Style to use for symbols that are deprecated."),undefined);
430
-
tokenClassificationRegistry.registerTokenModifier('modification',nls.localize('modification',"Style to use for write accesses."),undefined);
431
-
tokenClassificationRegistry.registerTokenModifier('async',nls.localize('async',"Style to use for symbols that are async."),undefined);
432
-
tokenClassificationRegistry.registerTokenModifier('readonly',nls.localize('readonly',"Style to use for symbols that are readonly."),undefined);
463
+
registry.registerTokenModifier('declaration',nls.localize('declaration',"Style for all symbol declarations."),undefined);
464
+
registry.registerTokenModifier('documentation',nls.localize('documentation',"Style to use for references in documentation."),undefined);
465
+
registry.registerTokenModifier('static',nls.localize('static',"Style to use for symbols that are static."),undefined);
466
+
registry.registerTokenModifier('abstract',nls.localize('abstract',"Style to use for symbols that are abstract."),undefined);
467
+
registry.registerTokenModifier('deprecated',nls.localize('deprecated',"Style to use for symbols that are deprecated."),undefined);
468
+
registry.registerTokenModifier('modification',nls.localize('modification',"Style to use for write accesses."),undefined);
469
+
registry.registerTokenModifier('async',nls.localize('async',"Style to use for symbols that are async."),undefined);
470
+
registry.registerTokenModifier('readonly',nls.localize('readonly',"Style to use for symbols that are readonly."),undefined);
0 commit comments