Update setting description product name (Code -> ADS) (#17912)

This commit is contained in:
Charles Gagnon
2021-12-14 10:59:40 -08:00
committed by GitHub
parent 02310b92c4
commit be933c88c0
2 changed files with 2 additions and 1 deletions

View File

@@ -241,7 +241,7 @@ configurationRegistry.registerConfiguration({
'files.watcherExclude': {
'type': 'object',
'default': isWindows /* https://github.com/microsoft/vscode/issues/23954 */ ? { '**/.git/objects/**': true, '**/.git/subtree-cache/**': true, '**/node_modules/*/**': true, '**/.hg/store/**': true } : { '**/.git/objects/**': true, '**/.git/subtree-cache/**': true, '**/node_modules/**': true, '**/.hg/store/**': true },
'description': nls.localize('watcherExclude', "Configure glob patterns of file paths to exclude from file watching. Patterns must match on absolute paths (i.e. prefix with ** or the full path to match properly). Changing this setting requires a restart. When you experience Code consuming lots of CPU time on startup, you can exclude large folders to reduce the initial load."),
'description': locConstants.watcherExclude, // {{SQL CARBON EDIT}} Product name to ADS
'scope': ConfigurationScope.RESOURCE
},
'files.hotExit': hotExitConfiguration,