diff --git a/src/vs/platform/terminal/common/terminal.ts b/src/vs/platform/terminal/common/terminal.ts index 46ad65e1221..5b9cb1cc23d 100644 --- a/src/vs/platform/terminal/common/terminal.ts +++ b/src/vs/platform/terminal/common/terminal.ts @@ -332,8 +332,6 @@ export interface IPtyService { updateTitle(id: number, title: string, titleSource: TitleEventSource): Promise; updateIcon(id: number, userInitiated: boolean, icon: TerminalIcon, color?: string): Promise; - installAutoReply(match: string, reply: string): Promise; - uninstallAllAutoReplies(): Promise; getDefaultSystemShell(osOverride?: OperatingSystem): Promise; getEnvironment(): Promise; getWslPath(original: string, direction: 'unix-to-win' | 'win-to-unix'): Promise; @@ -359,6 +357,13 @@ export interface IPtyService { // TODO: Make mandatory and remove impl from pty host service refreshIgnoreProcessNames?(names: string[]): Promise; + + // #region Pty service contribution RPC calls + + installAutoReply(match: string, reply: string): Promise; + uninstallAllAutoReplies(): Promise; + + // #endregion } export const IPtyService = createDecorator('ptyService');