Skip to content

Commit 602d2a2

Browse files
committed
storage.type.struct is not an appropriate textmate fallback for struct. Fixes microsoft#97162
1 parent 09e7f4e commit 602d2a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/platform/theme/common/tokenClassificationRegistry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ function createDefaultTokenClassificationRegistry(): TokenClassificationRegistry
515515
registerTokenType('namespace', nls.localize('namespace', "Style for namespaces."), [['entity.name.namespace']]);
516516

517517
registerTokenType('type', nls.localize('type', "Style for types."), [['entity.name.type'], ['support.type']]);
518-
registerTokenType('struct', nls.localize('struct', "Style for structs."), [['storage.type.struct']]);
518+
registerTokenType('struct', nls.localize('struct', "Style for structs."), [['entity.name.type.struct']]);
519519
registerTokenType('class', nls.localize('class', "Style for classes."), [['entity.name.type.class'], ['support.class']]);
520520
registerTokenType('interface', nls.localize('interface', "Style for interfaces."), [['entity.name.type.interface']]);
521521
registerTokenType('enum', nls.localize('enum', "Style for enums."), [['entity.name.type.enum']]);

0 commit comments

Comments
 (0)