diff options
author | Tom Feist <shabble@metavore.org> | 2011-01-01 18:03:30 +0000 |
---|---|---|
committer | Tom Feist <shabble@metavore.org> | 2011-01-01 18:03:30 +0000 |
commit | 6b02695d66cfe4c6a0c94d6291585556cac5a2c3 (patch) | |
tree | 408823bc031cb6b7d3c9e9450a4bc2a3144de1a5 /feature-tests/redir-input.pl | |
parent | docs/General/Internals: start of some documentation of the internals of how (diff) | |
download | irssi-scripts-6b02695d66cfe4c6a0c94d6291585556cac5a2c3.tar.gz irssi-scripts-6b02695d66cfe4c6a0c94d6291585556cac5a2c3.zip |
feature-tests: looking at ways to read from a DATA fh, and redirect normal
command output so it can be parsed.
Diffstat (limited to 'feature-tests/redir-input.pl')
-rw-r--r-- | feature-tests/redir-input.pl | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/feature-tests/redir-input.pl b/feature-tests/redir-input.pl new file mode 100644 index 0000000..94ca523 --- /dev/null +++ b/feature-tests/redir-input.pl @@ -0,0 +1,30 @@ +use strict; +use warnings; + + +use Irssi; +use Irssi::Irc; +use Irssi::TextUI; + +use Data::Dumper; + + +our $VERSION = '0.1'; +our %IRSSI = ( + authors => 'shabble', + contact => 'shabble+irssi@metavore.org', + name => '', + description => '', + license => 'Public Domain', + ); + + +Irssi::command_bind("ri", \&cmd_ri); + +sub cmd_ri { + my ($args, $server, $witem) = @_; + my $win = Irssi::active_win(); + + #my $ref = Irssi::windows_refnum_last + $win->format_create_dest(Irssi::MSGLEVEL_ClIENTCRAP()); +} |