App-optex-scroll
view release on metacpan or search on metacpan
Version 0.9902
# DESCRIPTION
**optex**'s **scroll** module prevents a command that produces output
longer than terminal hight from causing the executed command line to
scroll out from the screen.
It sets the scroll region for the output of the command it executes.
The output of the command scrolls by default 10 lines from the cursor
position where it was executed.
# OPTIONS
- **--line**=_n_
Set scroll region lines to _n_.
Default is 10.
- **--interval**=_sec_
lib/App/optex/scroll.pm view on Meta::CPAN
if (local @ARGV = splice @$argv, 0, $i) {
use Getopt::Long qw(GetOptionsFromArray);
Getopt::Long::Configure qw(bundling);
GetOptions \%opt, hash_to_spec \%opt or die "Option parse error.\n";
}
}
my $region = $opt{line};
flush "\n" x $region;
flush csi_code(CPL => $region); # CPL: Cursor Previous Line
my($l, $c) = cursor_position() or return;
set_region($l, $l + $region);
if (my $time = $opt{interval}) {
interval(time => $time);
}
}
sub cursor_position {
my $answer = ask(csi_code(DSR => 6), qr/R\z/); # DSR: Device Status Report
csi_report(CPR => 2, $answer); # CPR: Cursor Position Report
}
sub uncntrl {
$_[0] =~ s/([^\040-\176])/sprintf "\\%03o", ord $1/gear;
}
sub ask {
my($request, $end_re) = @_;
lib/App/optex/scroll.pm view on Meta::CPAN
Version 0.9902
=head1 DESCRIPTION
B<optex>'s B<scroll> module prevents a command that produces output
longer than terminal hight from causing the executed command line to
scroll out from the screen.
It sets the scroll region for the output of the command it executes.
The output of the command scrolls by default 10 lines from the cursor
position where it was executed.
=head1 OPTIONS
=over 7
=item B<--line>=I<n>
Set scroll region lines to I<n>.
Default is 10.
( run in 0.236 second using v1.01-cache-2.11-cpan-4d50c553e7e )