ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/perl/selection
(Generate patch)

Comparing rxvt-unicode/src/perl/selection (file contents):
Revision 1.28 by elmex, Tue Jan 17 13:19:45 2006 UTC vs.
Revision 1.62 by root, Wed Jun 23 12:45:30 2021 UTC

1#! perl 1#! perl
2use Digest::MD5 qw/md5_hex/;
3 2
4my $timers = {}; 3#:META:RESOURCE:%.pattern-0:string:first selection pattern
5my $pastebin_cmd;
6my $pastebin_url;
7 4
8sub on_start { 5=head1 NAME
9 my ($self) = @_;
10 $pastebin_cmd =
11 (urxvt::untaint $self->x_resource ("selection-pastebin-cmd"))
12 or "scp -p % ruth:/var/www/www.ta-sa.org/files/txt/";
13 6
14 $pastebin_url = 7selection - more intelligent selection
15 (urxvt::untaint $self->x_resource ("selection-pastebin-url"))
16 or "http://www.ta-sa.org/files/txt/";
17 ();
18}
19 8
20sub upload_paste { 9=head1 DESCRIPTION
21 my ($self) = @_;
22 10
23 my $txt = $self->selection; 11This extension tries to be more intelligent when the user extends
24 my $filename = md5_hex ($txt) . ".txt"; 12selections (double-click and further clicks). Right now, it tries to
13select words, urls and complete shell-quoted arguments, which is very
14convenient, too, if your F<ls> supports C<--quoting-style=shell>.
25 15
26 my $tmpfile = "/tmp/$filename"; 16A double-click usually selects the word under the cursor, further clicks
17will enlarge the selection.
27 18
28 my $msg = "uploaded $filename"; 19The selection works by trying to match a number of regexes and displaying
20them in increasing order of length. You can add your own regexes by
21specifying resources of the form:
29 22
30 if (open my $o, ">" . $tmpfile) { 23 URxvt.selection.pattern-0: perl-regex
31 print $o $txt; 24 URxvt.selection.pattern-1: perl-regex
32 close $o; 25 ...
33 } else {
34 $msg = "couldn't write $tmpfile: $!";
35 }
36 26
37 my $cmd = $pastebin_cmd; 27The index number (0, 1...) must not have any holes, and each regex must
38 $cmd =~ s/%/$tmpfile/; 28contain at least one pair of capturing parentheses, which will be used for
29the match. For example, the following adds a regex that matches everything
30between two vertical bars:
39 31
40 if (system ($cmd) == 0) { 32 URxvt.selection.pattern-0: \\|([^|]+)\\|
41 33
42 my $url = $pastebin_url; 34Another example: Programs I use often output "absolute path: " at the
43 $url =~ s/%/$filename/; 35beginning of a line when they process multiple files. The following
36pattern matches the filename (note, there is a single space at the very
37end):
44 38
45 $self->selection ($url); 39 URxvt.selection.pattern-0: ^(/[^:]+):\
46 } else {
47 $msg = "couldn't upload, '$cmd' failed";
48 }
49 40
50 my $ov = $timers->{ov} = $self->overlay (-1, 0, length ($msg), 1, urxvt::OVERLAY_RSTYLE, 0); 41You can look at the source of the selection extension to see more
51 $ov->set (0, 0, $msg); 42interesting uses, such as parsing a line from beginning to end.
52 43
53 $timers->{t1} = 44This extension also offers the following actions:
54 urxvt::timer
55 ->new
56 ->start ((int urxvt::NOW) + 5) # make sure we update "on" the second
57 ->interval (1)
58 ->cb (sub { delete $timers->{ov}; delete $timers->{t1}; });
59}
60 45
46=over 4
47
48=item rot13
49
50Rot-13 the selection when activated.
51
52Example:
53
54 URxvt.keysym.C-M-r: selection:rot13
55
56=back
57
58=cut
59
61sub on_keyboard_command { 60sub on_user_command {
62 my ($self, $cmd) = @_; 61 my ($self, $cmd) = @_;
63 62
64 $cmd eq "selection:rot13" 63 $cmd eq "selection:rot13"
65 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection); 64 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection);
66 65
67 $cmd eq "selection:remote-pastebin" 66 ()
68 and upload_paste ($self); 67}
68
69sub on_action {
70 my ($self, $action) = @_;
71
72 $action eq "rot13"
73 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection);
69 74
70 () 75 ()
71} 76}
72 77
73sub on_init { 78sub on_init {
74 my ($self) = @_; 79 my ($self) = @_;
75 80
81 if (defined (my $res = $self->resource ("cutchars"))) {
82 $res = $self->locale_decode ($res);
83 push @{ $self->{patterns} }, qr{\G [\Q$res\E[:space:]]* ([^\Q$res\E[:space:]]+) }x;
84 }
85
76 for (my $idx = 0; defined (my $res = $self->x_resource ("selection.pattern-$idx")); $idx++) { 86 for (my $idx = 0; defined (my $res = $self->x_resource ("selection.pattern-$idx")); $idx++) {
77 no re 'eval'; # just to be sure
78 $res = utf8::encode $self->locale_decode ($res); 87 $res = $self->locale_decode ($res);
79 push @{ $self->{patterns} }, qr/$res/; 88 push @{ $self->{patterns} }, qr/$res/;
80 } 89 }
90
91 $self->{enabled} = 1;
92
93 push @{ $self->{term}{option_popup_hook} }, sub {
94 ("new selection" => $self->{enabled}, sub { $self->{enabled} = shift })
95 };
81 96
82 () 97 ()
83} 98}
84 99
85# "find interetsing things"-patterns 100# "find interesting things"-patterns
86my @mark_patterns = ( 101my @mark_patterns = (
102# qr{ ([[:word:]]+) }x,
103 qr{ ([^[:space:]]+) }x,
104
87 # common types of "parentheses" 105 # common types of "parentheses"
106 qr{ (?<![^[:space:]]) [`'] ([^`']+) [`'] (?![^[:space:]]) }x,
88 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space]]) }x, 107 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space:]]) }x,
89 qr{ (?<![^[:space:]]) ` ([^`']+) ' (?![^[:space]]) }x, 108 qr{ (?<![^[:space:]]) ([^“”]+) (?![^[:space:]]) }x,
109
110 qr{ (?<![^[:space:]]) (' [^[:space:]] [^']* ') }x,
111 qr{ (' [^']* [^[:space:]] ') (?![^[:space:]]) }x,
112 qr{ (?<![^[:space:]]) (` [^[:space:]] [^']* ') }x,
113 qr{ (` [^']* [^[:space:]] ') (?![^[:space:]]) }x,
90 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x, 114 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x,
91 qr{ (" [^"]* [^[:space:]] ") (?![^[:space]]) }x, 115 qr{ (" [^"]* [^[:space:]] ") (?![^[:space:]]) }x,
92 qr{ \< ([^<>[:space:]]+) \> }x, 116
93 qr{ \{ ([^{}[:space:]]+) \} }x, 117 qr{ \{ ([^\{\}]+) \} }x,
94 qr{ \[ ([^{}[:space:]]+) \] }x,
95 qr{ \( ([^()[:space:]]+) \) }x, 118 qr{ \( ([^\(\)]+) \) }x,
119 qr{ \[ ([^\[\]]+) \] }x,
120 qr{ \< ([^\<\>]+) \> }x,
96 121
97 # urls, just a heuristic 122 # urls, just a heuristic
98 qr{( 123 qr{(
99 (?:https?|ftp|news|mailto|file)://[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~]+ 124 (?:https?://|ftp://|news://|mailto:|file://|\bwww\.)[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~#]+
100 [ab-zA-Z0-9\-\@;\/?:&=%\$_+!*\x27()~] # exclude some trailing characters (heuristic) 125 [ab-zA-Z0-9\-\@;\/?:&=%\$_+*()~] # exclude some trailing characters (heuristic)
101 )}x, 126 )}x,
102 127
103 # shell-like argument quoting, basically always matches 128 # shell-like argument quoting, basically always matches
104 qr{\G [\ \t|&;<>()] *( 129 qr{\G [\ \t|&;<>()]* (
105 (?: 130 (?:
106 [^\\"'\ \t|&;<>()]+ 131 [^\\"'\ \t|&;<>()]+
107 | \\. 132 | \\.
108 | " (?: [^\\"]+ | \\. )* " 133 | " (?: [^\\"]+ | \\. )* "
109 | ' [^']* ' 134 | ' [^']* '
118); 143);
119 144
120sub on_sel_extend { 145sub on_sel_extend {
121 my ($self, $time) = @_; 146 my ($self, $time) = @_;
122 147
148 $self->{enabled}
149 or return;
150
123 my ($row, $col) = $self->selection_mark; 151 my ($row, $col) = $self->selection_mark;
124 my $line = $self->line ($row); 152 my $line = $self->line ($row);
125 my $text = $line->t; 153 my $text = $line->t;
126 my $markofs = $line->offset_of ($row, $col); 154 my $markofs = $line->offset_of ($row, $col);
127 my $curlen = $line->offset_of ($self->selection_end) 155 my $curlen = $line->offset_of ($self->selection_end)
128 - $line->offset_of ($self->selection_beg); 156 - $line->offset_of ($self->selection_beg);
129 157
130 my @matches; 158 my @matches;
131 159
132 # not doing matches in unicode mode helps speed 160 if ($markofs < $line->l) {
133 # enourmously here. working in utf-8 should be
134 # equivalent due to the magic of utf-8 encoding.
135 utf8::encode $text;
136 study $text; # _really_ helps, too :) 161 study $text; # _really_ helps, too :)
137 162
138 for my $regex (@mark_patterns, @{ $self->{patterns} }) { 163 for my $regex (@mark_patterns, @{ $self->{patterns} }) {
139 while ($text =~ /$regex/g) { 164 while ($text =~ /$regex/g) {
140 if ($-[1] <= $markofs and $markofs <= $+[1]) { 165 if ($-[1] <= $markofs and $markofs <= $+[1]) {
141 my $ofs = $-[1]; 166 my $ofs = $-[1];
142 my $match = $1; 167 my $match = $1;
143 168
144 for my $regex (@simplify_patterns) { 169 for my $regex (@simplify_patterns) {
145 if ($match =~ $regex) { 170 if ($match =~ $regex) {
146 $match = $1; 171 $match = $1;
147 $ofs += $-[1]; 172 $ofs += $-[1];
173 }
148 } 174 }
175
176 push @matches, [$ofs, length $match];
149 } 177 }
150
151 push @matches, [$ofs, length $match];
152 } 178 }
153 } 179 }
154 } 180 }
155 181
156 # whole line 182 # whole line

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines