0.0.25
fix erase to eol, add more erase line codes
- Replaces references to .reset-text with .text-reset in the docs
This is a library of ANSI escape sequences.
use Terminal::ANSI;
save-screen;
clear-screen;
home;
hide-cursor;
sub scroll($row,$col = 1, $height = 7) {
print-at $row,$col, "━" x 20;
print-at $row + $height,$col, "━" x 20;
my $on = $row;
for 20000, 19999 ... 0 {
atomically {
set-scroll-region($row + 1,$row + $height - 1);
scroll-up if $on >= $row + $height - 1;
print-at ++$on min $row + $height - 1, $col, "counting down..$_";
}
}
}
my $p1 = start scroll(2);
my $p2 = start scroll(12,10,10);
my $p3 = start scroll(24);
await Promise.allof($p1,$p2,$p3);
sleep 1;
reset-scroll-region;
show-cursor;
restore-screen;
See the eg/ directory for more examples.
The functions in this module print ANSI escape sequences to stdout. There are functions for cursor movement, scroll regions, colors, and other screen functionality. There aren't functions for any of the esoteric escape codes.
The atomically
function suppresses printing, and instead concatenates
the output and emits the entire line at the end. This is helpful for
multi-threaded situations, where the output of several functions needs
to be in one piece.
There is also an OO interface, as well as a virtual screen, to mock emitting of escape codes (useful for testing).
This README can be found online here:
Terminal::ANSI has documentation for all of the available functions.
Terminal::ANSI:OO has the OO interface.
Feel free to email bug reports to the author, or you can file a ticket at
https://todo.sr.ht/~bduggan/raku-terminal-ansi
Brian Duggan (bduggan at matatu.org)