From deff3c0a63d0839911aa921523b6aa0c1a372135 Mon Sep 17 00:00:00 2001 From: Ailin Nemui Date: Wed, 9 Dec 2015 23:35:34 +0100 Subject: script fixes for the icrnl change in irssi - accept ^M in addition to ^J as enter key for scripts which use raw gui key pressed (won't solve KP_ENTER issue) --- scripts/per_window_prompt.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'scripts/per_window_prompt.pl') diff --git a/scripts/per_window_prompt.pl b/scripts/per_window_prompt.pl index 1f3a52f..128de70 100644 --- a/scripts/per_window_prompt.pl +++ b/scripts/per_window_prompt.pl @@ -21,7 +21,7 @@ use Irssi 20070804; use Irssi::TextUI; use vars qw($VERSION %IRSSI); -$VERSION = '1.0'; +$VERSION = '1.1'; %IRSSI = ( authors => 'Wouter Coekaerts', contact => 'coekie@irssi.org', @@ -29,7 +29,6 @@ $VERSION = '1.0'; description => 'Keeps a prompt per window', license => 'GPLv2 or later', url => 'http://wouter.coekaerts.be/irssi/', - changed => '04/08/07' ); my %prompts; @@ -80,7 +79,7 @@ sub UNLOAD { Irssi::signal_add_first 'gui key pressed' => sub { my ($key) = @_; - if ($key == 10 && ! $in_command) { + if (($key == 10 || $key == 13) && ! $in_command) { $win_before_command = winkey(Irssi::active_win); $win_before_command_deleted = 0; $in_command = 1; -- cgit v1.2.3