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.11 by root, Tue Jan 17 16:22:41 2006 UTC vs.
Revision 1.19 by root, Wed Mar 8 15:43:02 2006 UTC

3sub msg { 3sub msg {
4 my ($self, $msg) = @_; 4 my ($self, $msg) = @_;
5 5
6 my $overlay = $self->overlay (0, 0, $self->strwidth ($msg), 1); 6 my $overlay = $self->overlay (0, 0, $self->strwidth ($msg), 1);
7 $overlay->set (0, 0, $msg); 7 $overlay->set (0, 0, $msg);
8 my $iow; $iow = urxvt::timer->new->start (urxvt::NOW + 1)->cb (sub { 8 my $iow; $iow = urxvt::timer->new->after (1)->cb (sub {
9 undef $overlay; 9 undef $overlay;
10 undef $iow; 10 undef $iow;
11 }); 11 });
12} 12}
13 13
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 $_ });
64
65 /./
66 and $add_button->((sprintf "to unicode hex index (%x)", ord) => sub { $_ = sprintf "%x", ord });
61 67
62 /^(\S+):(\d+):?$/ 68 /^(\S+):(\d+):?$/
63 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ }); 69 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
64 70
65 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/ 71 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
67 73
68 /[\\"'\ \t|&;<>()]/ 74 /[\\"'\ \t|&;<>()]/
69 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 75 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
70 76
71 /^(http|ftp|telnet|irc|news):\// 77 /^(http|ftp|telnet|irc|news):\//
72 and $add_button->("run $self->{browser}" => sub { urxvt::exec_async $self->{browser}, $_ }); 78 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
79
80 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) {
81 if (my ($title, $cb) = $hook->($popup)) {
82 $add_button->($title, $cb);
83 }
84 }
73 85
74 if (/^\s*((?:0x)?\d+)\s*$/) { 86 if (/^\s*((?:0x)?\d+)\s*$/) {
75 $popup->add_title (sprintf "%20s", eval $1); 87 $popup->add_title (sprintf "%20s", eval $1);
76 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1); 88 $popup->add_title (sprintf "%20s", sprintf "0x%x", eval $1);
77 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1); 89 $popup->add_title (sprintf "%20s", sprintf "0%o", eval $1);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines