use Irssi;
use vars qw($VERSION %IRSSI %HELP);
-$VERSION = "0.9";
+$VERSION = "0.10";
%IRSSI = (
authors => "Maciek \'fahren\' Freudenheim",
contact => "fahren\@bochnia.pl",
name => "Scripts help",
description => "Provides access to script\'s help",
license => "GNU GPLv2 or later",
- changed => "Sat Apr 13 02:23:37 CEST 2002"
+ changed => "2019-02-27"
);
$HELP{scripthelp} = "
Provides help for irssi's perl scripts.
# from scriptinfo.pl
for (sort grep s/::$//, keys %Irssi::Script::) {
+ no strict 'refs';
my $help = ${ "Irssi::Script::${_}::HELP" }{$args};
if ($help) {
Irssi::signal_stop();