logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Term::Size::Perl - Perl extension for retrieving terminal size (Perl version)

Author

       Adirano Ferreira, <ferreira@cpan.org>

Description

       Yet another implementation of "Term::Size". Now in pure Perl, with the exception of a C probe run on
       build time.

   FUNCTIONSchars
               ($columns, $rows) = chars($h);
               $columns = chars($h);

           "chars"  returns  the  terminal size in units of characters corresponding to the given filehandle $h.
           If the argument is omitted, *STDIN{IO} is used.  In scalar context, it returns the terminal width.

       pixels
               ($x, $y) = pixels($h);
               $x = pixels($h);

           "pixels" returns the terminal size in units of pixels corresponding to the given filehandle  $h.   If
           the argument is omitted, *STDIN{IO} is used.  In scalar context, it returns the terminal width.

           Many systems with character-only terminals will return "(0, 0)".

Name

       Term::Size::Perl - Perl extension for retrieving terminal size (Perl version)

See Also

       It all began with Term::Size by Tim Goodwin. You may want to have a look at:

       Term::Size

       Term::Size::Win32

       Term::Size::ReadKey

       Please   reports   bugs   via  GitHub,  <https://github.com/aferreira/cpan-Term-Size-Perl/issues>.   When
       reporting bugs, it may be helpful to attach the Params.pm generated by the probe at build time.

Synopsis

           use Term::Size::Perl;

           ($columns, $rows) = Term::Size::Perl::chars *STDOUT{IO};
           ($x, $y) = Term::Size::Perl::pixels;

See Also