diff options
author | richo <richo@psych0tik.net> | 2011-09-21 11:34:15 +0000 |
---|---|---|
committer | richo <richo@psych0tik.net> | 2011-09-21 11:34:15 +0000 |
commit | 92d8c0227f5da999a32431063cbc38e0950c9081 (patch) | |
tree | 1e983937f4a30a8fb5b821293c02592293000b9e /auto-server/auto_server.pl | |
parent | Staging a few ideas on this slow shutdown issue (diff) | |
download | irssi-scripts-92d8c0227f5da999a32431063cbc38e0950c9081.tar.gz irssi-scripts-92d8c0227f5da999a32431063cbc38e0950c9081.zip |
TODO notes
Diffstat (limited to '')
-rw-r--r-- | auto-server/auto_server.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/auto-server/auto_server.pl b/auto-server/auto_server.pl index 9f18be9..77ba527 100644 --- a/auto-server/auto_server.pl +++ b/auto-server/auto_server.pl @@ -150,6 +150,8 @@ sub join_plus { return; } # TODO: search values() and give a 'did you mean' for closest channel + # TODO: Fuzzy match for ## channels (Would be nice to hax at teh tab + # completion too) # check if we're connected to that server my $server = Irssi::server_find_tag($server_id); @@ -177,6 +179,8 @@ sub join_plus { # check if we're already on the required channel my $on_channel = $server->channel_find($channel); + # FIXME + # Should this be $on_channel? Need docs.. if (defined $channel && ref($channel) eq 'Irssi::Irc::Channel') { Irssi::active_win()->print("You are already connected to " . " $channel on " . $server->{tag}); |