Remove incorrect label

This commit is contained in:
Daniel Imms
2019-07-01 12:24:43 -07:00
parent 20df119b38
commit b661d30f3b

View File

@ -28,7 +28,7 @@ export function activate(context: vscode.ExtensionContext) {
// vscode.window.createTerminal
context.subscriptions.push(vscode.commands.registerCommand('terminalTest.createTerminal', () => {
vscode.window.createTerminal(`Ext Terminal #${NEXT_TERM_ID++} (hideFromUser)`);
vscode.window.createTerminal(`Ext Terminal #${NEXT_TERM_ID++}`);
vscode.window.showInformationMessage('Hello World 2!');
}));
context.subscriptions.push(vscode.commands.registerCommand('terminalTest.createTerminalHideFromUser', () => {