diff options
| author | David Leadbeater | 2015-01-10 16:57:01 +0000 |
|---|---|---|
| committer | David Leadbeater | 2015-01-10 16:57:01 +0000 |
| commit | cbbdf2a1d93dbb64d3fb34346e9c57b14dfa2931 (patch) | |
| tree | 019203a11e96a90be76a4538433e1d223a747d55 /scripts/go.pl | |
| parent | 0a3941245c1cbb55dd3c67af0b5c33caddd04f8b (diff) | |
| parent | 71dba3f266191eeeff577303232d700fefe2e6e1 (diff) | |
| download | scripts.irssi.org-cbbdf2a1d93dbb64d3fb34346e9c57b14dfa2931.tar.bz2 | |
Merge branch 'gh-pages' of gh:irssi/scripts.irssi.org into gh-pages
Conflicts:
_data/scripts.yaml
Diffstat (limited to 'scripts/go.pl')
| -rw-r--r-- | scripts/go.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/go.pl b/scripts/go.pl index 3ca6744..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<tab> and /go <tab> (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 { @@ -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) { |
