mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 18:49:00 +01:00
sendText terminal API progress
This commit is contained in:
@@ -26,4 +26,10 @@ export class MainThreadTerminalService extends MainThreadTerminalServiceShape {
|
||||
public $show(terminalId: number, preserveFocus: boolean): void {
|
||||
this._terminalService.show(!preserveFocus, terminalId);
|
||||
}
|
||||
|
||||
public $sendText(terminalId: number, text: string, addNewLine: boolean): void {
|
||||
this._terminalService.show(false, terminalId).then((terminalPanel) => {
|
||||
// TODO: Implement
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user