Add note in code indicating 1.6 APIs

This commit is contained in:
Daniel Imms
2016-09-15 12:27:35 -07:00
parent 3c9dd393d4
commit 5a22cc9581

View File

@ -49,6 +49,8 @@ export function activate(context: vscode.ExtensionContext) {
terminalStack.push(vscode.window.createTerminal(`Ext Terminal #${terminalStack.length + 1}`));
getLatestTerminal().sendText("echo 'Sent text immediately after creating'");
}));
// Below coming in version v1.6
context.subscriptions.push(vscode.commands.registerCommand('terminalTest.createZshLoginShell', () => {
terminalStack.push((<any>vscode.window).createTerminal(`Ext Terminal #${terminalStack.length + 1}`, '/bin/zsh', ['-l']));
}));