Themes' schema needs update for "tokenColors". Fixes #25478

This commit is contained in:
Martin Aeschlimann 2017-04-27 20:52:38 +02:00
parent 053130ef2a
commit 3fac605425

View file

@ -173,7 +173,14 @@ const schema: IJSONSchema = {
type: 'object',
properties: {
colors: colorsSchema,
tokenColors: tokenColorsSchema
tokenColors: {
anyOf: [{
type: 'string',
description: nls.localize('schema.tokenColors.path', 'Path to a tmTheme file (relative to the current file)')
},
tokenColorsSchema
]
}
}
};