warpdotdev / Warp

Warp is the agentic development environment, built for coding with multiple AI agents.
https://warp.dev
Other
24.02k stars 488 forks source link

text overflow in `Windows Powershell` Warp terminal when the resulted object is very long. #6574

Closed MohaAmiry closed 3 weeks ago

MohaAmiry commented 1 month ago

Pre-submit Checks

Describe the bug

What is the issue?

when typing a Powershell command with a long object result in windows warp, the text get overflown, not wrapped, nor scrollable.

To reproduce

type the following command to demonstrate the issue in windows warp terminal Powershell Session: get-localuser * | select-object -property * | group-object -Property Enabled

Expected behavior

to scroll horizontally through the block.

Actual behavior

text overflow that prevent reading the results.

Screenshots, videos, and logs

Image

Operating system (OS)

Windows

Operating system and version

Windows 11

Shell Version

Powershell 7.1

Current Warp version

v0.2025.05.28.08.11.stable_03

Regression

No, this bug or issue has existed throughout my experience using Warp

Recent working Warp date

Probably none

Additional context

This issue is general, it also happens on the default windows Powershell terminal, it is not a "Warp exclusive bug".

Does this block you from using Warp daily?

Yes, this issue prevents me from using Warp daily.

Is this an issue only in Warp?

No, this issue happens in Warp and other terminals.

Warp Internal (ignore): linear-label:b9d78064-c89e-4973-b153-5178a31ee54e

None

dannyneira commented 3 weeks ago

Hi @MohaAmiry I'm able to reproduce this, but noticing similar results in Windows Terminal,

Try the following command formatted into a list so that it doesnt get truncated.

Get-LocalUser * | Select-Object -Property * | Group-Object -Property Enabled | Format-List

Closing as this isn't a bug specific to Warp, but powershell truncating the output.