From 4c9c3ec332b0f7ab6466d35c7b1c462b79e98205 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Mon, 30 Sep 2024 07:44:25 -0700 Subject: [PATCH] Move pty service contrib parts into region Follow up #230073 --- src/vs/platform/terminal/common/terminal.ts | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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');