[themes] keywords colorization should not include keyword.operator. Fixes #51237

This commit is contained in:
Martin Aeschlimann
2018-06-06 22:35:08 +02:00
parent fbef142ba5
commit 08d0634386
@@ -27,7 +27,7 @@ let colorRegistry = Registry.as<IColorRegistry>(Extensions.ColorContribution);
const tokenGroupToScopesMap: { [setting: string]: string[] } = {
comments: ['comment'],
strings: ['string'],
keywords: ['keyword', 'keyword.control', 'storage', 'storage.type'],
keywords: ['keyword - keyword.operator', 'keyword.control', 'storage', 'storage.type'],
numbers: ['constant.numeric'],
types: ['entity.name.type', 'entity.name.class', 'support.type', 'support.class'],
functions: ['entity.name.function', 'support.function'],