You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Output from Format-Table breaks inside the integrated console when you add vt100 sequences to change the colors. This works fine in every other terminal I've tried that supports this feature.
You can try this out with the following code:
$TableOutput=Get-NetIPAddress -AddressFamily IPv4 | Format-Table
$i=0
foreach ($Line in $TableOutput)
{
$FieldList=$Line.formatEntryInfo.formatPropertyFieldList
if ($FieldList)
{
$i++
if ($i%2 -eq 0)
{
foreach ($Property in $FieldList)
{
$Property.propertyValue="$([char]27)[92m$($Property.propertyValue)$([char]27)[0m"
}
}
}
}
$TableOutput
Expected Behaviour
Actual Behaviour
The text was updated successfully, but these errors were encountered:
System Details Output
Issue Description
Output from Format-Table breaks inside the integrated console when you add vt100 sequences to change the colors. This works fine in every other terminal I've tried that supports this feature.
You can try this out with the following code:
Expected Behaviour
Actual Behaviour
The text was updated successfully, but these errors were encountered: