history - rename setting mergePeriod to mergeWindow

This commit is contained in:
Benjamin Pasero
2022-03-23 08:03:51 +01:00
parent e46467033a
commit 3d7f75de4c
3 changed files with 5 additions and 5 deletions

View File

@@ -288,11 +288,11 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
'markdownDescription': localize('exclude', "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for excluding files from the local file history. Changing this setting has no effect on existing local file history entries."),
'scope': ConfigurationScope.RESOURCE
},
'workbench.localHistory.mergePeriod': {
'workbench.localHistory.mergeWindow': {
'type': 'number',
'default': 10,
'minimum': 1,
'markdownDescription': localize('mergePeriod', "Configure an interval in seconds during which the last entry in local file history is replaced with the entry that is being added. This helps reduce the overall number of entries that are added, for example when auto save is enabled. This setting is only applied to entries that have the same source of origin. Changing this setting has no effect on existing local file history entries."),
'markdownDescription': localize('mergeWindow', "Configure an interval in seconds during which the last entry in local file history is replaced with the entry that is being added. This helps reduce the overall number of entries that are added, for example when auto save is enabled. This setting is only applied to entries that have the same source of origin. Changing this setting has no effect on existing local file history entries."),
'scope': ConfigurationScope.RESOURCE
},
'workbench.commandPalette.history': {