mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
Add explorer.autorevealExclude setting (#136905)
* Add explorer.autorevealExclude setting * Update setting name, only check sibling once * linting * Correct boolean order and add catch for force reveal * Check for force instead of converting * Do not make revealexcludes inherit from file.excludes * Linting
This commit is contained in:
@@ -26,8 +26,8 @@ export class SettingsDocument {
|
||||
return this.provideFilesAssociationsCompletionItems(location, position);
|
||||
}
|
||||
|
||||
// files.exclude, search.exclude
|
||||
if (location.path[0] === 'files.exclude' || location.path[0] === 'search.exclude') {
|
||||
// files.exclude, search.exclude, explorer.autoRevealExclude
|
||||
if (location.path[0] === 'files.exclude' || location.path[0] === 'search.exclude' || location.path[0] === 'explorer.autoRevealExclude') {
|
||||
return this.provideExcludeCompletionItems(location, position);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user