mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
@@ -220,6 +220,13 @@ export class ExtHostPseudoterminal implements ITerminalChildProcess {
|
||||
}
|
||||
}
|
||||
|
||||
acknowledgeDataEvent(ackId: number): void {
|
||||
// TODO: Determine whether ExtHostPseudoterminal terminals should support flow control, this
|
||||
// would need resume/pause APIs
|
||||
|
||||
// No-op
|
||||
}
|
||||
|
||||
getInitialCwd(): Promise<string> {
|
||||
return Promise.resolve('');
|
||||
}
|
||||
@@ -488,6 +495,10 @@ export abstract class BaseExtHostTerminalService extends Disposable implements I
|
||||
return disposables;
|
||||
}
|
||||
|
||||
public $acceptProcessAckDataEvent(id: number, ackId: number): void {
|
||||
this._terminalProcesses.get(id)?.acknowledgeDataEvent(ackId);
|
||||
}
|
||||
|
||||
public $acceptProcessInput(id: number, data: string): void {
|
||||
this._terminalProcesses.get(id)?.input(data);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user