mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-04 15:25:47 +01:00
[themes] keywords colorization should not include keyword.operator. Fixes #51237
This commit is contained in:
@@ -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'],
|
||||
|
||||
Reference in New Issue
Block a user