@@ -94,6 +94,7 @@ import { ChatCompatibilityNotifier, ChatExtensionPointHandler } from './chatPart
94
94
import { ChatPasteProvidersFeature } from './chatPasteProviders.js' ;
95
95
import { QuickChatService } from './chatQuick.js' ;
96
96
import { ChatResponseAccessibleView } from './chatResponseAccessibleView.js' ;
97
+ // import './chatSessions.js';
97
98
import { ChatSetupContribution } from './chatSetup.js' ;
98
99
import { ChatStatusBarEntry } from './chatStatus.js' ;
99
100
import { ChatVariablesService } from './chatVariables.js' ;
@@ -116,6 +117,7 @@ import { registerLanguageModelActions } from './actions/chatLanguageModelActions
116
117
import { PromptUrlHandler } from './promptSyntax/promptUrlHandler.js' ;
117
118
import { ChatTaskServiceImpl , IChatTasksService } from '../common/chatTasksService.js' ;
118
119
import { ChatOutputRendererService , IChatOutputRendererService } from './chatOutputItemRenderer.js' ;
120
+ import { ChatSessionsView } from './chatSessions.js' ;
119
121
120
122
// Register configuration
121
123
const configurationRegistry = Registry . as < IConfigurationRegistry > ( ConfigurationExtensions . Configuration ) ;
@@ -364,7 +366,7 @@ configurationRegistry.registerConfiguration({
364
366
} ,
365
367
[ ChatConfiguration . AgentSessionsViewLocation ] : {
366
368
type : 'string' ,
367
- enum : [ 'disabled' , 'showChatsMenu' ] ,
369
+ enum : [ 'disabled' , 'showChatsMenu' , 'view' ] ,
368
370
description : nls . localize ( 'chat.sessionsViewLocation.description' , "Controls where to show the agent sessions menu." ) ,
369
371
default : 'disabled' ,
370
372
tags : [ 'experimental' ] ,
@@ -758,6 +760,7 @@ registerWorkbenchContribution2(ChatTransferContribution.ID, ChatTransferContribu
758
760
registerWorkbenchContribution2 ( ChatContextContributions . ID , ChatContextContributions , WorkbenchPhase . AfterRestored ) ;
759
761
registerWorkbenchContribution2 ( ChatResponseResourceFileSystemProvider . ID , ChatResponseResourceFileSystemProvider , WorkbenchPhase . AfterRestored ) ;
760
762
registerWorkbenchContribution2 ( PromptUrlHandler . ID , PromptUrlHandler , WorkbenchPhase . BlockRestore ) ;
763
+ registerWorkbenchContribution2 ( ChatSessionsView . ID , ChatSessionsView , WorkbenchPhase . AfterRestored ) ;
761
764
762
765
registerChatActions ( ) ;
763
766
registerChatCopyActions ( ) ;
0 commit comments