sendText terminal API progress

This commit is contained in:
Daniel Imms
2016-08-16 14:17:47 -07:00
parent d0f834704f
commit cce4650a6b
4 changed files with 13 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ export class ExtHostTerminal implements vscode.Terminal {
}
public sendText(text: string, addNewLine: boolean = true) {
// TODO: Implement
this._proxy.$sendText(this._id, text, addNewLine);
}
public show(preserveFocus: boolean): void {