aboutsummaryrefslogtreecommitdiffstats
path: root/prompt_info
diff options
context:
space:
mode:
authorTom Feist <shabble@metavore.org>2010-10-06 22:51:10 +0000
committerTom Feist <shabble@metavore.org>2010-10-06 22:51:10 +0000
commitbcb0c884b46815b889e5fd4011226feaba2b3369 (patch)
tree1c0d49cedace1fcbe4a4cf618000f9efc813c6b6 /prompt_info
parentfixed priorities (-1) and position (100) of prompt statusbars (diff)
downloadirssi-scripts-bcb0c884b46815b889e5fd4011226feaba2b3369.tar.gz
irssi-scripts-bcb0c884b46815b889e5fd4011226feaba2b3369.zip
added /print_test to check rev. video stuff is behaving.
Diffstat (limited to 'prompt_info')
-rw-r--r--prompt_info/prompt_replace.pl7
1 files changed, 6 insertions, 1 deletions
diff --git a/prompt_info/prompt_replace.pl b/prompt_info/prompt_replace.pl
index 3055afc..7c8ecc1 100644
--- a/prompt_info/prompt_replace.pl
+++ b/prompt_info/prompt_replace.pl
@@ -46,8 +46,9 @@ sub update_terminal_size {
if ($line =~ m/\s*(\d+)\s*rows\s*;\s*(\d+)\s*columns\s*;/) {
$term_h = $1;
$term_w = $2;
+ print "terminal size detected as $term_w x $term_h" if DEBUG;
} else {
- print "Failed to detect terminal size";
+ print "Failed to detect terminal size" if DEBUG;
}
}
@@ -85,6 +86,10 @@ sub init {
Irssi::command("^BIND ^F /visual toggle");
Irssi::command("^BIND ^G /visual clear");
+ Irssi::command_bind 'print_test',
+ sub {
+ Irssi::gui_printtext(0, 0, '%8hello there%n');
+ };
# redraw interception
Irssi::signal_add_last('command redraw', \&augment_redraw);