aboutsummaryrefslogtreecommitdiffstats
path: root/vimput.pl
blob: 971616c06b2eea5b3329500315705d9681ec1aab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;

use Irssi;

our $VERSION = '1.00';
our %IRSSI = {
	authors     => 'Teddy Wing',
	contact     => 'irssi@teddywing.com',
	name        => 'Vimput',
	description => '',
	license     => 'GPL',
};


Irssi::signal_add_last 'gui key pressed' => sub {
	my ($key) = @_;

	print Irssi::parse_special('$L', undef, 0);
};