mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-04 07:15:54 +01:00
history - aggregate items of same source (#145294)
This commit is contained in:
@@ -260,14 +260,14 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
|
||||
'workbench.localHistory.enabled': {
|
||||
'type': 'boolean',
|
||||
'default': true,
|
||||
'description': localize('localHistoryEnabled', "Controls whether the local file history is enabled. When enabled, the file contents of an editor that is saved will be stored to a backup location and can be restored or reviewed later. Changing this setting has no effect on existing file history entries."),
|
||||
'description': localize('localHistoryEnabled', "Controls whether local file history is enabled. When enabled, the file contents of an editor that is saved will be stored to a backup location to be able to restore or review the contents later. Changing this setting has no effect on existing local file history entries."),
|
||||
'scope': ConfigurationScope.RESOURCE
|
||||
},
|
||||
'workbench.localHistory.maxFileSize': {
|
||||
'type': 'number',
|
||||
'default': 256,
|
||||
'minimum': 1,
|
||||
'description': localize('localHistoryMaxFileSize', "Controls the maximum size of a file (in KB) to be considered for local history. Files that are larger will not be added to the local history unless explicitly added by via user gesture. Changing this setting has no effect on existing file history entries."),
|
||||
'description': localize('localHistoryMaxFileSize', "Controls the maximum size of a file (in KB) to be considered for local file history. Files that are larger will not be added to the local file history. Changing this setting has no effect on existing local file history entries."),
|
||||
'scope': ConfigurationScope.RESOURCE
|
||||
},
|
||||
'workbench.localHistory.maxFileEntries': {
|
||||
@@ -279,14 +279,14 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
|
||||
},
|
||||
'workbench.localHistory.exclude': {
|
||||
'type': 'object',
|
||||
'markdownDescription': localize('exclude', "Configure [glob patterns](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options) for excluding files from being added to local history."),
|
||||
'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': {
|
||||
'type': 'number',
|
||||
'default': 10,
|
||||
'minimum': 1,
|
||||
'markdownDescription': localize('mergePeriod', "Configure an interval in seconds during which the last entry in local 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."),
|
||||
'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."),
|
||||
'scope': ConfigurationScope.RESOURCE
|
||||
},
|
||||
'workbench.commandPalette.history': {
|
||||
|
||||
Reference in New Issue
Block a user