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.18 by root, Fri Jan 20 20:07:39 2006 UTC vs.
Revision 1.19 by root, Wed Mar 8 15:43:02 2006 UTC

60 and $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 61
62 /./ 62 /./
63 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ }); 63 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ });
64 64
65 /./
66 and $add_button->((sprintf "to unicode hex index (%x)", ord) => sub { $_ = sprintf "%x", ord });
67
65 /^(\S+):(\d+):?$/ 68 /^(\S+):(\d+):?$/
66 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/ });
67 70
68 /%[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]/
69 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge }); 72 and $add_button->("uri unescape" => sub { s/%([0-9a-fA-F]{2})/chr hex $1/ge });

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines