Fix text clipping in Copilot Chat inline terminal for alternate buffer message (#292957)

This commit is contained in:
Copilot
2026-02-05 20:56:54 +00:00
committed by GitHub
parent 52201985c2
commit be51f7b651

View File

@@ -305,7 +305,7 @@ const telemetryIgnoredSequences = [
'\x1b[O', // Focus out
];
const altBufferMessage = localize('runInTerminalTool.altBufferMessage', "The command opened the alternate buffer.");
const altBufferMessage = '\n' + localize('runInTerminalTool.altBufferMessage', "The command opened the alternate buffer.");
export class RunInTerminalTool extends Disposable implements IToolImpl {