From dbea7fb00ec22fb6dc4594e2f9910d70cc8b9fd1 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Mon, 19 Sep 2016 11:19:26 -0700 Subject: [PATCH] Remove terminal API comment about change coming in v1.6 Fixes #11384 --- src/vs/vscode.d.ts | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/vs/vscode.d.ts b/src/vs/vscode.d.ts index ba90e871df0..4a45ff40378 100644 --- a/src/vs/vscode.d.ts +++ b/src/vs/vscode.d.ts @@ -3014,9 +3014,7 @@ declare namespace vscode { /** * Send text to the terminal. The text is written to the stdin of the underlying pty process - * (shell) of the terminal. Note that this will currently force the terminal panel to the - * foreground, this is changing in v1.6 such that it will require an explicit call to - * [Terminal.show](#Terminal.show) in order to show the terminal panel. + * (shell) of the terminal. * * @param text The text to send. * @param addNewLine Whether to add a new line to the text being sent, this is normally @@ -3508,9 +3506,7 @@ declare namespace vscode { export function createStatusBarItem(alignment?: StatusBarAlignment, priority?: number): StatusBarItem; /** - * Creates a [Terminal](#Terminal). Note that this will currently force the terminal panel - * to the foreground, this is changing in v1.6 such that it will require an explicit call to - * [Terminal.show](#Terminal.show) in order to show the terminal panel. + * Creates a [Terminal](#Terminal). * * @param name Optional human-readable string which will be used to represent the terminal in the UI. * @param shellPath Optional path to a custom shell executable to be used in the terminal. -- GitLab