Subject: | Problem with Win32::Console::ANSI module. |
Hi
Devel::REPL uses Term::ReadLine module for REPL.
It seems that Term::ReadLine can't properly handle Win32::Console::ANSI
ansi code.
Please see https://rt.cpan.org/Ticket/Display.html?id=59429#txn-1187270
Shortcut one-liners for test.
Show quoted text
>perl -MTerm::ANSIColor -MWin32::Console::ANSI -e "print STDOUT
color('red'),'Hello',color('reset')"
Hello
Show quoted text>perl -MTerm::ReadLine -MTerm::ANSIColor -MWin32::Console::ANSI -e
"$t=Term::ReadLine->new();print {$t->OUT}
color('red'),'Hello',color('reset')"
[31mHello[0m