Skip to content

Commit 571cf40

Browse files
committed
WIP: Test VirtualTerminal in CI
1 parent a661775 commit 571cf40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PSReadLine/PlatformWindows.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ internal static IConsole OneTimeInit(PSConsoleReadLine singleton)
139139
_singleton = singleton;
140140
var breakHandlerGcHandle = GCHandle.Alloc(new BreakHandler(OnBreak));
141141
SetConsoleCtrlHandler((BreakHandler)breakHandlerGcHandle.Target, true);
142-
_enableVtOutput = !Console.IsOutputRedirected && SetConsoleOutputVirtualTerminalProcessing();
142+
_enableVtOutput = true; // !Console.IsOutputRedirected && SetConsoleOutputVirtualTerminalProcessing();
143143
_terminalOwnerThreadId = GetTerminalOwnerThreadId();
144144

145145
return _enableVtOutput ? new VirtualTerminal() : new LegacyWin32Console();

0 commit comments

Comments
 (0)