You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitthis.turnOff(false,true/* force soft turnoff on error */);
273
-
this.logService.info('Auto Sync: Turned off sync because server has {0} content with newer version than of client. Requires client upgrade.',userDataSyncError.resource);
273
+
this.logService.info(`Auto Sync: Turned off sync because server has ${userDataSyncError.resource} content with newer version than of client. Requires client upgrade.`);
awaitthis.turnOff(false,true/* force soft turnoff on error */);
279
-
this.logService.info('Auto Sync: Turned off sync because server has {0} content with older version than of client. Requires server reset.',userDataSyncError.resource);
279
+
this.logService.info(`Auto Sync: Turned off sync because server has ${userDataSyncError.resource} content with older version than of client. Requires server reset.`);
description: localize('sync.keybindingsPerPlatform',"Synchronize keybindings for each platform."),
51
+
description: localize('settingsSync.keybindingsPerPlatform',"Synchronize keybindings for each platform."),
52
52
default: true,
53
53
scope: ConfigurationScope.APPLICATION,
54
54
tags: ['sync','usesOnlineServices']
55
55
},
56
-
'sync.ignoredExtensions': {
56
+
'sync.keybindingsPerPlatform': {
57
+
type: 'boolean',
58
+
deprecationMessage: localize('sync.keybindingsPerPlatform.deprecated',"Deprecated, use settingsSync.keybindingsPerPlatform instead"),
59
+
},
60
+
'settingsSync.ignoredExtensions': {
57
61
'type': 'array',
58
-
'description': localize('sync.ignoredExtensions',"List of extensions to be ignored while synchronizing. The identifier of an extension is always ${publisher}.${name}. For example: vscode.csharp."),
62
+
'description': localize('settingsSync.ignoredExtensions',"List of extensions to be ignored while synchronizing. The identifier of an extension is always ${publisher}.${name}. For example: vscode.csharp."),
59
63
$ref: ignoredExtensionsSchemaId,
60
64
'default': [],
61
65
'scope': ConfigurationScope.APPLICATION,
62
66
uniqueItems: true,
63
67
disallowSyncIgnore: true,
64
68
tags: ['sync','usesOnlineServices']
65
69
},
66
-
'sync.ignoredSettings': {
70
+
'sync.ignoredExtensions': {
71
+
'type': 'array',
72
+
deprecationMessage: localize('sync.ignoredExtensions.deprecated',"Deprecated, use settingsSync.ignoredExtensions instead"),
73
+
},
74
+
'settingsSync.ignoredSettings': {
67
75
'type': 'array',
68
-
description: localize('sync.ignoredSettings',"Configure settings to be ignored while synchronizing."),
76
+
description: localize('settingsSync.ignoredSettings',"Configure settings to be ignored while synchronizing."),
69
77
'default': [],
70
78
'scope': ConfigurationScope.APPLICATION,
71
79
$ref: ignoredSettingsSchemaId,
72
80
additionalProperties: true,
73
81
uniqueItems: true,
74
82
disallowSyncIgnore: true,
75
83
tags: ['sync','usesOnlineServices']
84
+
},
85
+
'sync.ignoredSettings': {
86
+
'type': 'array',
87
+
deprecationMessage: localize('sync.ignoredSettings.deprecated',"Deprecated, use settingsSync.ignoredSettings instead"),
0 commit comments