提交 010bc0d0 编写于 作者: S Sandeep Somavarapu

#59209 Flush the content before revealing the channel

上级 79689996
......@@ -95,6 +95,11 @@ export class ExtHostOutputChannelBackedByFile extends AbstractExtHostOutputChann
this._appender.append(value);
}
show(columnOrPreserveFocus?: vscode.ViewColumn | boolean, preserveFocus?: boolean): void {
this._appender.flush();
super.show(columnOrPreserveFocus, preserveFocus);
}
clear(): void {
this._appender.flush();
super.clear();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册