diff --git a/src/vs/workbench/api/common/configurationExtensionPoint.ts b/src/vs/workbench/api/common/configurationExtensionPoint.ts index d57364a016ca0c0dcc422f6fe7a2512d1054a2ec..17516f5f860cdf407ecf5dc6267e6f34ba38c6f7 100644 --- a/src/vs/workbench/api/common/configurationExtensionPoint.ts +++ b/src/vs/workbench/api/common/configurationExtensionPoint.ts @@ -72,6 +72,10 @@ const configurationEntrySchema: IJSONSchema = { deprecationMessage: { type: 'string', description: nls.localize('scope.deprecationMessage', 'If set, the property is marked as deprecated and the given message is shown as an explanation.') + }, + markdownDeprecationMessage: { + type: 'string', + description: nls.localize('scope.markdownDeprecationMessage', 'If set, the property is marked as deprecated and the given message is shown as an explanation in the markdown format.') } } }