From eb2bac1877d6c4dcccfa9f494a807aef8c429b98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Mangeonjean?= Date: Thu, 5 Oct 2023 19:42:06 +0200 Subject: [PATCH] fix: add missing service --- src/missing-services.ts | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/missing-services.ts b/src/missing-services.ts index 916ee477..e8f6fa3e 100644 --- a/src/missing-services.ts +++ b/src/missing-services.ts @@ -146,7 +146,7 @@ import { INotebookKernelService } from 'vs/workbench/contrib/notebook/common/not import { INotebookRendererMessagingService } from 'vs/workbench/contrib/notebook/common/notebookRendererMessagingService' import { IInteractiveDocumentService } from 'vs/workbench/contrib/interactive/browser/interactiveDocumentService' import { IInlineChatService } from 'vs/workbench/contrib/inlineChat/common/inlineChat' -import { IChatWidgetService } from 'vs/workbench/contrib/chat/browser/chat' +import { IChatWidgetService, IQuickChatService } from 'vs/workbench/contrib/chat/browser/chat' import { IRemoteExplorerService } from 'vs/workbench/services/remote/common/remoteExplorerService' import { IAuthenticationService } from 'vs/workbench/services/authentication/common/authentication' import { ITimelineService } from 'vs/workbench/contrib/timeline/common/timeline' @@ -1598,6 +1598,17 @@ registerSingleton(IChatService, class ChatService implements IChatService { notifyUserAction = unsupported }, InstantiationType.Delayed) +registerSingleton(IQuickChatService, class QuickChatService implements IQuickChatService { + _serviceBrand: undefined + onDidClose = Event.None + enabled = false + toggle = unsupported + focus = unsupported + open = unsupported + close = unsupported + openInChatView = unsupported +}, InstantiationType.Delayed) + registerSingleton(IEmbedderTerminalService, class EmbedderTerminalService implements IEmbedderTerminalService { _serviceBrand: undefined onDidCreateTerminal = Event.None