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.15 by root, Thu Jan 19 16:22:13 2006 UTC vs.
Revision 1.17 by root, Fri Jan 20 10:27:08 2006 UTC

54 } 54 }
55 }); 55 });
56 }; 56 };
57 57
58 for ($text) { 58 for ($text) {
59 /./
59 $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ }); 60 and $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
61
62 /./
60 $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ }); 63 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
61 64
62 /^(\S+):(\d+):?$/ 65 /^(\S+):(\d+):?$/
63 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ }); 66 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
64 67
65 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/ 68 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
69 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 72 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
70 73
71 /^(http|ftp|telnet|irc|news):\// 74 /^(http|ftp|telnet|irc|news):\//
72 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) }); 75 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
73 76
77 warn "hook for $self $self->{term}\n";#d#
74 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) { 78 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) {
75 if (my ($title, $cb) = $hook->($popup)) { 79 if (my ($title, $cb) = $hook->($popup)) {
76 $add_button->($title, $cb); 80 $add_button->($title, $cb);
77 } 81 }
78 } 82 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines