diff options
author | Tom Feist <shabble@metavore.org> | 2011-10-10 20:04:35 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-10-10 20:04:35 +0000 |
commit | e8eb9df8484f530ee89ac89d79ede8f9e4caad0f (patch) | |
tree | f1b7ba59e022c294241ec482f803ace414d04be3 /fixery/nicklist.pl | |
parent | nicklist: bumped version number, added my contact details to header. (diff) | |
download | irssi-scripts-e8eb9df8484f530ee89ac89d79ede8f9e4caad0f.tar.gz irssi-scripts-e8eb9df8484f530ee89ac89d79ede8f9e4caad0f.zip |
nicklist: more formatting cleanup, mostly line-wrapping
Diffstat (limited to 'fixery/nicklist.pl')
-rw-r--r-- | fixery/nicklist.pl | 40 |
1 files changed, 23 insertions, 17 deletions
diff --git a/fixery/nicklist.pl b/fixery/nicklist.pl index 3e5392a..363322e 100644 --- a/fixery/nicklist.pl +++ b/fixery/nicklist.pl @@ -258,34 +258,39 @@ sub screen_size { do 'asm/ioctls.ph'; }; - # ugly way not working, let's try something uglier, the dg-hack(tm) (constant for linux only?) + # ugly way not working, let's try something uglier, the dg-hack(tm) + # (constant for linux only?) if ($@) { no strict 'refs'; *TIOCGWINSZ = sub { return 0x5413 }; } unless (defined &TIOCGWINSZ) { - die "Term::ReadKey not found, and ioctl 'workaround' failed. Install the Term::ReadKey perl module to use screen mode.\n"; + die "Term::ReadKey not found, and ioctl 'workaround' failed. " + . "Install the Term::ReadKey perl module to use screen mode.\n"; } - open(TTY, "+</dev/tty") or die "No tty: $!"; - unless (ioctl(TTY, &TIOCGWINSZ, $winsize='')) { - die "Term::ReadKey not found, and ioctl 'workaround' failed ($!). Install the Term::ReadKey perl module to use screen mode.\n"; + open my $tty, "+</dev/tty" or die "No tty: $!"; + unless (ioctl($tty, &TIOCGWINSZ, $winsize='')) { + die "Term::ReadKey not found, and ioctl 'workaround' failed ($!)." + . " Install the Term::ReadKey perl module to use screen mode.\n"; } - close(TTY); + close $tty; ($row, $col, $xpixel, $ypixel) = unpack('S4', $winsize); } # set screen width - $irssi_width = $col-$nicklist_width-1; - $height = $row-1; + $irssi_width = $col - $nicklist_width - 1; + $height = $row - 1; - # on some recent systems, "screen -X fit; screen -X width -w 50" doesn't work, needs a sleep in between the 2 commands - # so we wait a second before setting the width - Irssi::timeout_add_once(1000, sub { - my ($new_irssi_width) = @_; - system 'screen -x '.$ENV{'STY'}.' -X width -w ' . $new_irssi_width; - # and then we wait another second for the resizing, and then redraw. - Irssi::timeout_add_once(1000, sub {$screen_resizing = 0; redraw()}, []); - }, $irssi_width); + # on some recent systems, "screen -X fit; screen -X width -w 50" doesn't + # work, needs a sleep in between the 2 commands so we wait a second before + # setting the width + Irssi::timeout_add_once + (1000, sub { + my ($new_irssi_width) = @_; + system 'screen -x '.$ENV{'STY'}.' -X width -w ' . $new_irssi_width; + # and then we wait another second for the resizing, and then redraw. + Irssi::timeout_add_once(1000, sub {$screen_resizing = 0; redraw()}, []); + }, $irssi_width); } sub sig_terminal_resized { @@ -293,7 +298,7 @@ sub sig_terminal_resized { return; } $screen_resizing = 1; - Irssi::timeout_add_once(1000,\&screen_size,[]); + Irssi::timeout_add_once(1000, \&screen_size, []); } @@ -313,6 +318,7 @@ sub nicklist_write_end { sub nicklist_write_line { my ($line, $data) = @_; + if ($mode == $SCREEN) { print STDERR "\033P\033[" . ($line+1) . ';'. ($irssi_width+1) .'H'. $screen_prefix . $data . "\033\\"; } elsif ($mode == $FIFO) { |