4423
return;
4424
}
4425
>
const appended = this._nonPtyShellTerminals.append(e.data.toolCallId, e.data.partialOutput);
copilotAgentSession.ts
4426
if (appended?.created) {
4428
>
tracked.content.push({
4429
>
type: ToolResultContentType.Terminal,
4430
>
resource: uri,
4431
>
title: tracked.displayName,
4432
>
isPty: false,
4433
>
});
4434
>
this._emitAction({
4435
>
type: ActionType.ChatToolCallContentChanged,
4436
>
turnId: this._turnId,
4437
>
toolCallId: e.data.toolCallId,
4438
>
content: tracked.content,
4439
>
}, tracked.parentToolCallId);
4440
>
}
4441
}));
4442