vscode.d.ts make column argument deprecated

This commit is contained in:
isidor
2016-01-21 15:34:30 +01:00
parent 8faae6d6ba
commit 5fa32affe9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -2420,10 +2420,10 @@ declare namespace vscode {
/**
* Reveal this channel in the UI.
*
* @param column @deprecated **This argument is deprecated.** The column in which to show the channel, default in [one](#ViewColumn.One).
* @param preserveFocus When `true` the channel will not take focus.
*/
show(preserveFocus?: boolean): void;
show(column?: ViewColumn, preserveFocus?: boolean): void;
/**
* Hide this channel from the UI.
@@ -47,7 +47,7 @@ export class ExtHostOutputChannel implements vscode.OutputChannel {
this._proxy.clear(this._name);
}
show(preserveFocus?: boolean): void {
show(column?: vscode.ViewColumn, preserveFocus?: boolean): void {
this._proxy.reveal(this._name, preserveFocus);
}