Start of allowing terminal process to live on extension host

This commit is contained in:
Daniel Imms
2018-04-16 14:32:51 -07:00
parent ccba4e6c27
commit 948897cd13
9 changed files with 149 additions and 47 deletions

View File

@@ -727,10 +727,19 @@ export interface ExtHostQuickOpenShape {
$validateInput(input: string): TPromise<string>;
}
export interface ShellLaunchConfigDto {
name?: string;
executable?: string;
args?: string[] | string;
cwd?: string;
env?: { [key: string]: string };
}
export interface ExtHostTerminalServiceShape {
$acceptTerminalClosed(id: number): void;
$acceptTerminalOpened(id: number, name: string): void;
$acceptTerminalProcessId(id: number, processId: number): void;
$createProcess(shellLaunchConfig: ShellLaunchConfigDto, cols: number, rows: number): void;
}
export interface ExtHostSCMShape {