From dbaec4df48d99818ad13a25352c991c9ccb529b1 Mon Sep 17 00:00:00 2001 From: ferret Date: Sun, 28 Sep 2014 10:04:05 +0100 Subject: Update go.pl Change tab completion to match /go but not other command beginning with /go (e.g. /google)--- scripts/go.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/go.pl b/scripts/go.pl index 3ca6744..34bf000 100644 --- a/scripts/go.pl +++ b/scripts/go.pl @@ -24,7 +24,7 @@ sub signal_complete_go { my $channel = $window->get_active_name(); my $k = Irssi::parse_special('$k'); - return unless ($linestart =~ /^\Q${k}\Ego/i); + return unless ($linestart =~ /^\Q${k}\Ego\b/i); @$complist = (); foreach my $w (Irssi::windows) { -- cgit v1.2.3 From 582c888142040a34c4262110c8eb76c123ad5fe9 Mon Sep 17 00:00:00 2001 From: ferret Date: Sun, 19 Oct 2014 15:12:04 +0100 Subject: Update go.pl bump go.pl version--- scripts/go.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/go.pl b/scripts/go.pl index 34bf000..b656a0f 100644 --- a/scripts/go.pl +++ b/scripts/go.pl @@ -8,7 +8,7 @@ use Irssi::Irc; # If you are in #irssi you can type /go #irssi or /go irssi or even /go ir ... # also try /go ir and /go (that's two spaces) -$VERSION = '1.00'; +$VERSION = '1.01'; %IRSSI = ( authors => 'nohar', @@ -16,7 +16,7 @@ $VERSION = '1.00'; name => 'go to window', description => 'Implements /go command that activates a window given a name/partial name. It features a nice completion.', license => 'GPLv2 or later', - changed => '08-17-04' + changed => '2014-10-19' ); sub signal_complete_go { -- cgit v1.2.3