Instructions for files.defaultLanguage new option is confusing (fix #90187)

This commit is contained in:
Benjamin Pasero 2020-02-07 06:58:35 +01:00
parent beaf391bc5
commit ec7968776b
2 changed files with 2 additions and 2 deletions

View file

@ -314,7 +314,7 @@ configurationRegistry.registerConfiguration({
'files.hotExit': hotExitConfiguration,
'files.defaultLanguage': {
'type': 'string',
'description': nls.localize('defaultLanguage', "The default language mode that is assigned to new files. If configured to `${activeEditorLanguage}`, will use the language mode of the currently active text editor if any.")
'markdownDescription': nls.localize('defaultLanguage', "The default language mode that is assigned to new files. If configured to `${activeEditorLanguage}`, will use the language mode of the currently active text editor if any.")
},
'files.maxMemoryForLargeFilesMB': {
'type': 'number',

View file

@ -28,7 +28,7 @@ const keyboardConfiguration: IConfigurationNode = {
'type': 'string'
},
'default': [],
'description': nls.localize('touchbar.ignored', 'A set of identifiers for entries in the touchbar that should not show up (for example `workbench.action.navigateBack`.'),
'markdownDescription': nls.localize('touchbar.ignored', 'A set of identifiers for entries in the touchbar that should not show up (for example `workbench.action.navigateBack`.'),
'included': OS === OperatingSystem.Macintosh && parseFloat(release()) >= 16 // Minimum: macOS Sierra (10.12.x = darwin 16.x)
}
}