aboutsummaryrefslogtreecommitdiffstats
path: root/feature-tests/format-test.pl
blob: d8be412b9428e3322a0e0394d9e47b8470295546 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use strict;
use warnings;


use Irssi;


our $VERSION = '0.1';
our %IRSSI = (
              authors     => '',
              contact     => '',
              name        => '',
              description => '',
              license     => 'Public Domain',
             );

init();

sub init {
    Irssi::command_bind('ft', \&format_test);
}


sub format_test {
    my ($args, $win, $server) = @_;
}