Skip to content

Commit

Permalink
fix: add missing service
Browse files Browse the repository at this point in the history
  • Loading branch information
Loïc Mangeonjean committed Oct 5, 2023
1 parent eea8b4d commit eb2bac1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/missing-services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit eb2bac1

Please sign in to comment.