From 904baf472cb939bcde8646676a7dda4562c4b10f Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Thu, 8 Jan 2009 23:49:50 -0600 Subject: [PATCH] basic (but working) support for tweeting non-command input to the twitter window --- twirssi.pl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/twirssi.pl b/twirssi.pl index ba254dd..6358591 100644 --- a/twirssi.pl +++ b/twirssi.pl @@ -893,6 +893,20 @@ sub sig_complete { } } +sub event_send_text { + my ( $line, $server, $win ) = @_; + my $awin = Irssi::active_win(); + + # if the window where we got our text was the twitter window, and the user + # wants to be lazy, tweet away! + if ( ($awin->get_active_name() eq $window->{name}) + and Irssi::settings_get_bool("tweet_window_input") ) { + &cmd_tweet($line, $server, $win); + } +} + +Irssi::signal_add( "send text", "event_send_text" ); + Irssi::theme_register([ 'twirssi_tweet', '[$0%B@$1%n$2] $3', 'twirssi_reply', '[$0\--> %B@$1%n$2] $3', @@ -915,6 +929,7 @@ Irssi::settings_add_bool( "twirssi", "twirssi_debug", 0 ); Irssi::settings_add_bool( "twirssi", "twirssi_first_run", 1 ); Irssi::settings_add_bool( "twirssi", "twirssi_track_replies", 1 ); Irssi::settings_add_bool( "twirssi", "twirssi_use_reply_aliases", 0 ); +Irssi::settings_add_bool( "twirssi", "tweet_window_input", 0 ); $window = Irssi::window_find_name( Irssi::settings_get_str('twitter_window') ); if ($window) { -- 2.30.2