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.29 by root, Tue Jan 17 16:22:41 2006 UTC vs.
Revision 1.60 by sf-exg, Sat May 31 08:33:47 2014 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 = $self->x_resource ("selection-pastebin-cmd")
11 or "scp -p % ruth:/var/www/www.ta-sa.org/files/txt/";
12 6
13 $pastebin_url = $self->x_resource ("selection-pastebin-url") 7selection - more intelligent selection (enabled by default)
14 or "http://www.ta-sa.org/files/txt/";
15 ();
16}
17 8
18sub upload_paste { 9=head1 DESCRIPTION
19 my ($self) = @_;
20 10
21 my $txt = $self->selection; 11This extension tries to be more intelligent when the user extends
22 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>.
23 15
24 my $tmpfile = "/tmp/$filename"; 16A double-click usually selects the word under the cursor, further clicks
17will enlarge the selection.
25 18
26 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:
27 22
28 if (open my $o, ">" . $tmpfile) { 23 URxvt.selection.pattern-0: perl-regex
29 print $o $txt; 24 URxvt.selection.pattern-1: perl-regex
30 close $o; 25 ...
31 } else {
32 $msg = "couldn't write $tmpfile: $!";
33 }
34 26
35 my $cmd = $pastebin_cmd; 27The index number (0, 1...) must not have any holes, and each regex must
36 $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:
37 31
38 if (system ($cmd) == 0) { 32 URxvt.selection.pattern-0: \\|([^|]+)\\|
39 33
40 my $url = $pastebin_url; 34Another example: Programs I use often output "absolute path: " at the
41 $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):
42 38
43 $self->selection ($url); 39 URxvt.selection.pattern-0: ^(/[^:]+):\
44 } else {
45 $msg = "couldn't upload, '$cmd' failed";
46 }
47 40
48 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
49 $ov->set (0, 0, $msg); 42interesting uses, such as parsing a line from beginning to end.
50 43
51 $timers->{t1} = 44This extension also offers the following actions:
52 urxvt::timer
53 ->new
54 ->start ((int urxvt::NOW) + 5) # make sure we update "on" the second
55 ->interval (1)
56 ->cb (sub { delete $timers->{ov}; delete $timers->{t1}; });
57}
58 45
59sub on_keyboard_command { 46=over 4
60 my ($self, $cmd) = @_;
61 47
62 $cmd eq "selection:rot13" 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
60sub on_action {
61 my ($self, $action) = @_;
62
63 $action eq "rot13"
63 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);
64
65 $cmd eq "selection:remote-pastebin"
66 and upload_paste ($self);
67 65
68 () 66 ()
69} 67}
70 68
71sub on_init { 69sub on_init {
72 my ($self) = @_; 70 my ($self) = @_;
73 71
72 if (defined (my $res = $self->resource ("cutchars"))) {
73 $res = $self->locale_decode ($res);
74 push @{ $self->{patterns} }, qr{\G [\Q$res\E[:space:]]* ([^\Q$res\E[:space:]]+) }x;
75 }
76
74 for (my $idx = 0; defined (my $res = $self->x_resource ("selection.pattern-$idx")); $idx++) { 77 for (my $idx = 0; defined (my $res = $self->x_resource ("selection.pattern-$idx")); $idx++) {
75 no re 'eval'; # just to be sure
76 $res = utf8::encode $self->locale_decode ($res); 78 $res = $self->locale_decode ($res);
77 push @{ $self->{patterns} }, qr/$res/; 79 push @{ $self->{patterns} }, qr/$res/;
78 } 80 }
81
82 $self->{enabled} = 1;
83
84 push @{ $self->{term}{option_popup_hook} }, sub {
85 ("new selection" => $self->{enabled}, sub { $self->{enabled} = shift })
86 };
79 87
80 () 88 ()
81} 89}
82 90
83# "find interetsing things"-patterns 91# "find interesting things"-patterns
84my @mark_patterns = ( 92my @mark_patterns = (
93# qr{ ([[:word:]]+) }x,
94 qr{ ([^[:space:]]+) }x,
95
85 # common types of "parentheses" 96 # common types of "parentheses"
97 qr{ (?<![^[:space:]]) [`'] ([^`']+) [`'] (?![^[:space:]]) }x,
86 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space]]) }x, 98 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space:]]) }x,
87 qr{ (?<![^[:space:]]) ` ([^`']+) ' (?![^[:space]]) }x, 99 qr{ (?<![^[:space:]]) ([^“”]+) (?![^[:space:]]) }x,
100
101 qr{ (?<![^[:space:]]) (' [^[:space:]] [^']* ') }x,
102 qr{ (' [^']* [^[:space:]] ') (?![^[:space:]]) }x,
103 qr{ (?<![^[:space:]]) (` [^[:space:]] [^']* ') }x,
104 qr{ (` [^']* [^[:space:]] ') (?![^[:space:]]) }x,
88 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x, 105 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x,
89 qr{ (" [^"]* [^[:space:]] ") (?![^[:space]]) }x, 106 qr{ (" [^"]* [^[:space:]] ") (?![^[:space:]]) }x,
90 qr{ \< ([^<>[:space:]]+) \> }x, 107
91 qr{ \{ ([^{}[:space:]]+) \} }x, 108 qr{ \{ ([^\{\}]+) \} }x,
92 qr{ \[ ([^{}[:space:]]+) \] }x,
93 qr{ \( ([^()[:space:]]+) \) }x, 109 qr{ \( ([^\(\)]+) \) }x,
110 qr{ \[ ([^\[\]]+) \] }x,
111 qr{ \< ([^\<\>]+) \> }x,
94 112
95 # urls, just a heuristic 113 # urls, just a heuristic
96 qr{( 114 qr{(
97 (?:https?|ftp|news|mailto|file)://[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~]+ 115 (?:https?://|ftp://|news://|mailto:|file://|\bwww\.)[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~#]+
98 [ab-zA-Z0-9\-\@;\/?:&=%\$_+!*\x27()~] # exclude some trailing characters (heuristic) 116 [ab-zA-Z0-9\-\@;\/?:&=%\$_+*()~] # exclude some trailing characters (heuristic)
99 )}x, 117 )}x,
100 118
101 # shell-like argument quoting, basically always matches 119 # shell-like argument quoting, basically always matches
102 qr{\G [\ \t|&;<>()] *( 120 qr{\G [\ \t|&;<>()]* (
103 (?: 121 (?:
104 [^\\"'\ \t|&;<>()]+ 122 [^\\"'\ \t|&;<>()]+
105 | \\. 123 | \\.
106 | " (?: [^\\"]+ | \\. )* " 124 | " (?: [^\\"]+ | \\. )* "
107 | ' [^']* ' 125 | ' [^']* '
116); 134);
117 135
118sub on_sel_extend { 136sub on_sel_extend {
119 my ($self, $time) = @_; 137 my ($self, $time) = @_;
120 138
139 $self->{enabled}
140 or return;
141
121 my ($row, $col) = $self->selection_mark; 142 my ($row, $col) = $self->selection_mark;
122 my $line = $self->line ($row); 143 my $line = $self->line ($row);
123 my $text = $line->t; 144 my $text = $line->t;
124 my $markofs = $line->offset_of ($row, $col); 145 my $markofs = $line->offset_of ($row, $col);
125 my $curlen = $line->offset_of ($self->selection_end) 146 my $curlen = $line->offset_of ($self->selection_end)
126 - $line->offset_of ($self->selection_beg); 147 - $line->offset_of ($self->selection_beg);
127 148
128 my @matches; 149 my @matches;
129 150
130 # not doing matches in unicode mode helps speed 151 if ($markofs < $line->l) {
131 # enourmously here. working in utf-8 should be
132 # equivalent due to the magic of utf-8 encoding.
133 utf8::encode $text;
134 study $text; # _really_ helps, too :) 152 study $text; # _really_ helps, too :)
135 153
136 for my $regex (@mark_patterns, @{ $self->{patterns} }) { 154 for my $regex (@mark_patterns, @{ $self->{patterns} }) {
137 while ($text =~ /$regex/g) { 155 while ($text =~ /$regex/g) {
138 if ($-[1] <= $markofs and $markofs <= $+[1]) { 156 if ($-[1] <= $markofs and $markofs <= $+[1]) {
139 my $ofs = $-[1]; 157 my $ofs = $-[1];
140 my $match = $1; 158 my $match = $1;
141 159
142 for my $regex (@simplify_patterns) { 160 for my $regex (@simplify_patterns) {
143 if ($match =~ $regex) { 161 if ($match =~ $regex) {
144 $match = $1; 162 $match = $1;
145 $ofs += $-[1]; 163 $ofs += $-[1];
164 }
146 } 165 }
166
167 push @matches, [$ofs, length $match];
147 } 168 }
148
149 push @matches, [$ofs, length $match];
150 } 169 }
151 } 170 }
152 } 171 }
153 172
154 # whole line 173 # whole line

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines