Merge pull request #181708 from microsoft/ben/readonly-files

Allow to mark files as readonly (#4873)
This commit is contained in:
Benjamin Pasero
2023-05-10 15:07:46 +02:00
committed by GitHub
43 changed files with 673 additions and 143 deletions

View File

@@ -317,6 +317,9 @@ const registry = Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Con
},
'workbench.localHistory.exclude': {
'type': 'object',
'patternProperties': {
'.*': { 'type': 'boolean' }
},
'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
},