Skip to content

Commit

Permalink
Request adding new 'decorator' semantic token scopes for Javascript/T…
Browse files Browse the repository at this point in the history
…ypescript. Fixes #114082
  • Loading branch information
aeschli committed Oct 21, 2021
1 parent c2f44d4 commit c3488ed
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -531,6 +531,7 @@ function createDefaultTokenClassificationRegistry(): TokenClassificationRegistry
registerTokenType('property', nls.localize('property', "Style for properties."), [['variable.other.property']]);
registerTokenType('enumMember', nls.localize('enumMember', "Style for enum members."), [['variable.other.enummember']]);
registerTokenType('event', nls.localize('event', "Style for events."), [['variable.other.event']]);
registerTokenType('decorator', nls.localize('decorator', "Style for decorators & annotations."), [['meta.decorator', 'entity.name.function']]);

registerTokenType('label', nls.localize('labels', "Style for labels. "), undefined);

Expand Down

0 comments on commit c3488ed

Please sign in to comment.