Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteVen Batten <6561887+sbatten@users.noreply.github.com>2021-06-09 12:22:13 +0300
committerGitHub <noreply@github.com>2021-06-09 12:22:13 +0300
commitf8b576c274b74b7d15743f60df951834ebde55bf (patch)
treeecc2d114b5aefe8aaf4c23cad96f222a3d71a247
parentc5e845182bf934ccbf8a3be3e48317757388ec59 (diff)
trust the empty window by default (#125788)
-rw-r--r--src/vs/workbench/contrib/workspace/browser/workspace.contribution.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/workspace/browser/workspace.contribution.ts b/src/vs/workbench/contrib/workspace/browser/workspace.contribution.ts
index 89ee35a2fe0..4b589ac17b8 100644
--- a/src/vs/workbench/contrib/workspace/browser/workspace.contribution.ts
+++ b/src/vs/workbench/contrib/workspace/browser/workspace.contribution.ts
@@ -637,7 +637,7 @@ Registry.as<IConfigurationRegistry>(ConfigurationExtensions.Configuration)
},
[WORKSPACE_TRUST_EMPTY_WINDOW]: {
type: 'boolean',
- default: false,
+ default: true,
included: !isWeb,
markdownDescription: localize('workspace.trust.emptyWindow.description', "Controls whether or not the empty window is trusted by default within VS Code. When used with `#{0}#`, you can enable the full functionality of VS Code without prompting in an empty window.", WORKSPACE_TRUST_UNTRUSTED_FILES),
scope: ConfigurationScope.APPLICATION