Skip to content

Commit eb2bac1

Browse files
author
Loïc Mangeonjean
committed
fix: add missing service
1 parent eea8b4d commit eb2bac1

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

src/missing-services.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ import { INotebookKernelService } from 'vs/workbench/contrib/notebook/common/not
146146
import { INotebookRendererMessagingService } from 'vs/workbench/contrib/notebook/common/notebookRendererMessagingService'
147147
import { IInteractiveDocumentService } from 'vs/workbench/contrib/interactive/browser/interactiveDocumentService'
148148
import { IInlineChatService } from 'vs/workbench/contrib/inlineChat/common/inlineChat'
149-
import { IChatWidgetService } from 'vs/workbench/contrib/chat/browser/chat'
149+
import { IChatWidgetService, IQuickChatService } from 'vs/workbench/contrib/chat/browser/chat'
150150
import { IRemoteExplorerService } from 'vs/workbench/services/remote/common/remoteExplorerService'
151151
import { IAuthenticationService } from 'vs/workbench/services/authentication/common/authentication'
152152
import { ITimelineService } from 'vs/workbench/contrib/timeline/common/timeline'
@@ -1598,6 +1598,17 @@ registerSingleton(IChatService, class ChatService implements IChatService {
15981598
notifyUserAction = unsupported
15991599
}, InstantiationType.Delayed)
16001600

1601+
registerSingleton(IQuickChatService, class QuickChatService implements IQuickChatService {
1602+
_serviceBrand: undefined
1603+
onDidClose = Event.None
1604+
enabled = false
1605+
toggle = unsupported
1606+
focus = unsupported
1607+
open = unsupported
1608+
close = unsupported
1609+
openInChatView = unsupported
1610+
}, InstantiationType.Delayed)
1611+
16011612
registerSingleton(IEmbedderTerminalService, class EmbedderTerminalService implements IEmbedderTerminalService {
16021613
_serviceBrand: undefined
16031614
onDidCreateTerminal = Event.None

0 commit comments

Comments
 (0)