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.14 by root, Thu Jan 19 09:47:15 2006 UTC vs.
Revision 1.15 by root, Thu Jan 19 16:22:13 2006 UTC

18 18
19 $self->grab_button (3, urxvt::ControlMask); 19 $self->grab_button (3, urxvt::ControlMask);
20 20
21 () 21 ()
22} 22}
23
24our @hook;
25 23
26sub on_button_press { 24sub on_button_press {
27 my ($self, $event) = @_; 25 my ($self, $event) = @_;
28 26
29 if ($event->{button} == 3 && $event->{state} & urxvt::ControlMask) { 27 if ($event->{button} == 3 && $event->{state} & urxvt::ControlMask) {
71 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 69 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
72 70
73 /^(http|ftp|telnet|irc|news):\// 71 /^(http|ftp|telnet|irc|news):\//
74 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) }); 72 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
75 73
76 for my $hook (@hook) { 74 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) {
77 if (my ($title, $cb) = $hook->($popup)) { 75 if (my ($title, $cb) = $hook->($popup)) {
78 $add_button->($title, $cb); 76 $add_button->($title, $cb);
79 } 77 }
80 } 78 }
81 79

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines