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.17 by root, Fri Jan 20 10:27:08 2006 UTC vs.
Revision 1.24 by root, Sat Dec 17 22:47:16 2011 UTC

12} 12}
13 13
14sub on_start { 14sub on_start {
15 my ($self) = @_; 15 my ($self) = @_;
16 16
17 $self->{browser} = $self->x_resource ("urlLauncher") || "x-www-browser"; 17 $self->{browser} = $self->x_resource ("urlLauncher") || "sensible-browser";
18 18
19 $self->grab_button (3, urxvt::ControlMask); 19 $self->grab_button (3, urxvt::ControlMask);
20 20
21 () 21 ()
22} 22}
54 } 54 }
55 }); 55 });
56 }; 56 };
57 57
58 for ($text) { 58 for ($text) {
59 /\n/
60 and $add_button->("newlines to spaces" => sub { y/\n/ / });
61
59 /./ 62 /./
60 and $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ }); 63 and $add_button->("rot13" => sub { y/A-Za-z/N-ZA-Mn-za-m/ });
61 64
62 /./ 65 /./
63 and $add_button->("eval perl expression" => sub { no warnings; $_ = eval $_ }); 66 and $add_button->("eval perl expression" => sub { my $self = $self; no warnings; $_ = eval $_; $_ = "$@" if $@ });
64 67
68 /./
69 and $add_button->((sprintf "to unicode hex index (%x)", ord) => sub { $_ = sprintf "%x", ord });
70
65 /^(\S+):(\d+):?$/ 71 /(\S+):(\d+):?/
66 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/ });
67 73
68 /%[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]/
69 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 });
70 76
71 /[\\"'\ \t|&;<>()]/ 77 /[\\"'\ \t|&;<>()]/
72 and $add_button->("shell quote" => sub { $_ = "\Q$_" }); 78 and $add_button->("shell quote" => sub { $_ = "\Q$_" });
73 79
74 /^(http|ftp|telnet|irc|news):\// 80 /^(https?|ftp|telnet|irc|news):\//
75 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) }); 81 and $add_button->("run $self->{browser}" => sub { $self->exec_async ($self->{browser}, $_) });
76 82
77 warn "hook for $self $self->{term}\n";#d#
78 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) { 83 for my $hook (@{ $self->{term}{selection_popup_hook} || [] }) {
79 if (my ($title, $cb) = $hook->($popup)) { 84 if (my ($title, $cb) = $hook->($popup)) {
80 $add_button->($title, $cb); 85 $add_button->($title, $cb);
81 } 86 }
82 } 87 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines