From 2e2ee18c96cb0844d893e025cfab9e15d1fb2988 Mon Sep 17 00:00:00 2001 From: John Murray Date: Thu, 19 Aug 2021 08:54:13 +0100 Subject: [PATCH] improve workbench.editor.experimentalAutoLockGroups text (#131157) --- src/vs/workbench/browser/workbench.contribution.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/browser/workbench.contribution.ts b/src/vs/workbench/browser/workbench.contribution.ts index bf4c09fdc0b..1b5b2e47c9e 100644 --- a/src/vs/workbench/browser/workbench.contribution.ts +++ b/src/vs/workbench/browser/workbench.contribution.ts @@ -190,7 +190,7 @@ const registry = Registry.as(ConfigurationExtensions.Con }, 'workbench.editor.experimentalAutoLockGroups': { 'type': 'array', - 'description': localize('workbench.editor.experimentalAutoLockGroups', "Experimental: a set of editors that will cause a group to get locked automatically when the editor is the first in the group and only if more than one group is opened. Locked groups will only be used for opening editors when explicitly chosen by user gesture (e.g. drag and drop), but not by default (e.g. from the file picker). As such, the active editor in a locked group is less likely to be replaced by with a different editor by accident."), + 'description': localize('workbench.editor.experimentalAutoLockGroups', "Experimental: lock a group automatically when an editor is the first in the group and more than one group is open. Locked groups will only be used for opening editors when explicitly chosen by user gesture (e.g. drag and drop), but not by default. Consequently the active editor in a locked group is less likely to be replaced accidentally with a different editor."), 'items': { 'type': 'string' },