Enable the isolation mode setting

This commit is contained in:
Ladislau Szomoru
2026-02-14 16:17:48 +01:00
parent aefe8af421
commit 87a11a4bbd
2 changed files with 3 additions and 1 deletions

View File

@@ -185,7 +185,8 @@ export class AgentSessionsChatWidget extends Disposable {
return idLower === 'repositories' || idLower === 'folders' ||
nameLower === 'repository' || nameLower === 'repositories' ||
nameLower === 'folder' || nameLower === 'folders' ||
idLower === 'branch' || nameLower === 'branch';
idLower === 'branch' || nameLower === 'branch' ||
idLower === 'isolation' || nameLower === 'isolation';
}
: viewOptions.excludeOptionGroup;

View File

@@ -24,6 +24,7 @@ Registry.as<IConfigurationRegistry>(Extensions.Configuration).registerDefaultCon
'github.copilot.chat.claudeCode.enabled': true,
'github.copilot.chat.cli.branchSupport.enabled': true,
'github.copilot.chat.cli.isolationOption.enabled': true,
'github.copilot.chat.languageContext.typescript.enabled': true,
'inlineChat.affordance': 'editor',