typescript should not steel focus

This commit is contained in:
Johannes Rieken
2016-08-23 16:49:54 +02:00
parent 5fbe501da2
commit 4a25cec539

View File

@@ -199,7 +199,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
if (data) {
this.output.appendLine(this.data2String(data));
}
this.output.show();
this.output.show(true);
}
private logTrace(message: string, data?: any): void {
@@ -207,7 +207,7 @@ export default class TypeScriptServiceClient implements ITypescriptServiceClient
if (data) {
this.output.appendLine(this.data2String(data));
}
this.output.show();
this.output.show(true);
}
private get packageInfo(): IPackageInfo {