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.22 by root, Tue Jan 4 21:34:18 2011 UTC vs.
Revision 1.23 by root, Tue Jan 4 21:35:35 2011 UTC

66 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ }); 66 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
67 67
68 /./ 68 /./
69 and $add_button->((sprintf "to unicode hex index (%x)", ord) => sub { $_ = sprintf "%x", ord }); 69 and $add_button->((sprintf "to unicode hex index (%x)", ord) => sub { $_ = sprintf "%x", ord });
70 70
71 /^(\S+):(\d+):?$/ 71 /(\S+):(\d+):?/
72 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ }); 72 and $add_button->("vi-commands to load '$1'" => sub { s/^(\S+):(\d+):?$/\x1b:e $1\x0d:$2\x0d/ });
73 73
74 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/ 74 /%[0-9a-fA-F]{2}/ && !/%[^0-9a-fA-F]/ && !/%.[^0-9a-fA-F]/
75 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge }); 75 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge });
76 76

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines