http://qs1969.pair.com?node_id=11146011


in reply to Re: Text::ANSI::Util for wrapping "colorful" text
in thread Text::ANSI::Util for wrapping "colorful" text

I notice that you're inserting \e[m before line endings. Apparently neither ta_length() nor ta_pad() can deal with this sequence (i.e. treat it as non-printing). I changed the two places in your code where you insert that sequence to insert \e[0m instead, and it passed my limited testing.

I don't know if that's the right fix, though. :-)

Replies are listed 'Best First'.
Re^3: Text::ANSI::Util for wrapping "colorful" text
by tybalt89 (Monsignor) on Aug 08, 2022 at 00:08 UTC

    The sequence \e[m is exactly the same as \e[0m (according to wikipedia);