X Tutup
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -308,12 +308,12 @@ public class FormattingData
/// <summary>
/// Gets value to turn off blink.
/// </summary>
public string BlinkOff { get; } = "\x1b[5m";
public string BlinkOff { get; } = "\x1b[25m";

/// <summary>
/// Gets value to turn on blink.
/// </summary>
public string Blink { get; } = "\x1b[25m";
public string Blink { get; } = "\x1b[5m";

/// <summary>
/// Gets value to turn off bold.
Expand Down
4 changes: 2 additions & 2 deletions test/powershell/engine/Formatting/PSStyle.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Describe 'Tests for $PSStyle automatic variable' {
$PSDefaultParameterValues.Add('It:Skip', (-not $EnabledExperimentalFeatures.Contains('PSAnsiRendering')))
$styleDefaults = @{
Reset = "`e[0m"
BlinkOff = "`e[5m"
Blink = "`e[25m"
BlinkOff = "`e[25m"
Blink = "`e[5m"
BoldOff = "`e[22m"
Bold = "`e[1m"
HiddenOff = "`e[28m"
Expand Down
X Tutup