diff options
| author | ferret | 2014-09-28 10:04:05 +0100 | 
|---|---|---|
| committer | ferret | 2014-09-28 10:04:05 +0100 | 
| commit | dbaec4df48d99818ad13a25352c991c9ccb529b1 (patch) | |
| tree | 0cb05dc137a9b13fb6ea12941e0979a83c902ede | |
| parent | f79b1a4f9ee0a04aac923a2687c089ad95711150 (diff) | |
| download | scripts.irssi.org-dbaec4df48d99818ad13a25352c991c9ccb529b1.tar.bz2 | |
Update go.pl
Change tab completion to match /go but not other command beginning with /go (e.g. /google)
| -rw-r--r-- | scripts/go.pl | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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) { | 
