in reply to Re: Weird screen output in my AceShell module
in thread Weird screen output in my AceShell module
After some testing, I seem to need to do this before loading in the Term::ANSIScreen module.# This so one can use \e ourselfes... on both Linux and Windows! Else # the Win32::Console::ANSI have its on functions for outputting in col +or! if ($^O eq "MSWin32") { eval { require Win32::Console::ANSI; }; } elsif ($^O eq "Linux") { eval { require Term::ANSIColor; }; } use Term::ANSIScreen qw/:color :cursor :screen :keyboard/; ...
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Weird screen output in my AceShell module
by ikegami (Patriarch) on Jul 15, 2006 at 21:01 UTC | |
by Ace128 (Hermit) on Jul 15, 2006 at 21:25 UTC | |
by ikegami (Patriarch) on Jul 15, 2006 at 21:41 UTC |