提交 864e80dc 编写于 作者: R rebornix

fix #112178.

上级 4fe04b10
......@@ -91,6 +91,11 @@ export function truncatedArrayOfString(container: HTMLElement, outputs: string[]
const fullRange = new Range(1, 1, lineCount, Math.max(1, buffer.getLineLastNonWhitespaceColumn(lineCount)));
container.innerText = buffer.getValueInRange(fullRange, EndOfLinePreference.TextDefined);
if (renderANSI) {
container.appendChild(handleANSIOutput(buffer.getValueInRange(fullRange, EndOfLinePreference.TextDefined), themeService));
} else {
container.innerText = buffer.getValueInRange(fullRange, EndOfLinePreference.TextDefined);
}
return;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册