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
path: root/src/vs
diff options
context:
space:
mode:
authorJoyce Er <joyce.er@microsoft.com>2022-07-27 23:17:22 +0300
committerGitHub <noreply@github.com>2022-07-27 23:17:22 +0300
commitd48349a494df57dca14f2478ceb3055188341d47 (patch)
treef4532458a221e6ac6ce3c71b1ec81054f38cb923 /src/vs
parent06f8d52e37f3ba31764103dd51f7c06a7bee5676 (diff)
Default edit sessions to hidden for 1.70 (#156494)
Diffstat (limited to 'src/vs')
-rw-r--r--src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts b/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts
index 06a991fd12d..2853ab2d422 100644
--- a/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts
+++ b/src/vs/workbench/contrib/editSessions/browser/editSessions.contribution.ts
@@ -594,7 +594,7 @@ Registry.as<IConfigurationRegistry>(Extensions.Configuration).registerConfigurat
'workbench.experimental.editSessions.enabled': {
'type': 'boolean',
'tags': ['experimental', 'usesOnlineServices'],
- 'default': true,
+ 'default': false,
'markdownDescription': localize('editSessionsEnabled', "Controls whether to display cloud-enabled actions to store and resume uncommitted changes when switching between web, desktop, or devices."),
},
}