From c8783f311e545690b02fc3038e6813c093f0a8f8 Mon Sep 17 00:00:00 2001 From: Benjamin Pasero Date: Wed, 27 Apr 2016 18:35:20 +0200 Subject: [PATCH] Exclude the .svn folder from Find in Files by Default (fixes #5896) --- src/vs/workbench/parts/files/browser/files.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/parts/files/browser/files.contribution.ts b/src/vs/workbench/parts/files/browser/files.contribution.ts index 77cb20531eb..5c2fa2748e8 100644 --- a/src/vs/workbench/parts/files/browser/files.contribution.ts +++ b/src/vs/workbench/parts/files/browser/files.contribution.ts @@ -173,7 +173,7 @@ configurationRegistry.registerConfiguration({ 'files.exclude': { 'type': 'object', 'description': nls.localize('exclude', "Configure glob patterns for excluding files and folders."), - 'default': { '**/.git': true, '**/.DS_Store': true }, + 'default': { '**/.git': true, '**/.svn': true, '**/.DS_Store': true }, 'additionalProperties': { 'anyOf': [ { -- GitLab