ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/selection-popup
(Generate patch)

Comparing rxvt-unicode/src/perl/selection-popup (file contents):
Revision 1.8 by root, Wed Jan 11 02:13:56 2006 UTC vs.
Revision 1.9 by root, Thu Jan 12 02:20:56 2006 UTC

15 my ($self) = @_; 15 my ($self) = @_;
16 16
17 $self->{browser} = urxvt::untaint $self->x_resource ("urlLauncher") || "x-www-browser"; 17 $self->{browser} = urxvt::untaint $self->x_resource ("urlLauncher") || "x-www-browser";
18 18
19 $self->grab_button (3, urxvt::ControlMask); 19 $self->grab_button (3, urxvt::ControlMask);
20
21 ()
20} 22}
21 23
22sub on_button_press { 24sub on_button_press {
23 my ($self, $event) = @_; 25 my ($self, $event) = @_;
24 26
67 69
68 /[\\"'\ \t|&;<>()]/ 70 /[\\"'\ \t|&;<>()]/
69 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 71 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
70 72
71 /^(http|ftp|telnet|irc|news):\// 73 /^(http|ftp|telnet|irc|news):\//
72 and $add_button->("run $self->{browser}" => sub { system "$self->{browser} \Q$_\E &" }); 74 and $add_button->("run $self->{browser}" => sub { urxvt::exec_async $self->{browser}, $_ });
73 } 75 }
74 76
75 $popup->show; 77 $popup->show;
76 78
77 return 1; 79 return 1;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines