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.27 by elmex, Tue Jan 17 13:07:16 2006 UTC vs.
Revision 1.58 by root, Sat May 17 13:38:23 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 =
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 (enabled by default)
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 $h = md5_hex ($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 $fn = "/tmp/$h.txt"; 16A double-click usually selects the word under the cursor, further clicks
17will enlarge the selection.
27 18
28 my $msg = "uploaded $h.txt"; 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, ">" . $fn) { 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 $fn: $!";
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/%/$fn/; 28contain at least one pair of capturing parentheses, which will be used for
39 unless (system ($cmd) == 0) { 29the match. For example, the following adds a regex that matches everything
40 $msg = "couldn't upload, '$cmd' failed"; 30between two vertical bars:
41 }
42 31
43 $self->selection ($pastebin_url . "$h.txt"); 32 URxvt.selection.pattern-0: \\|([^|]+)\\|
44 33
45 my $ov = $timers->{ov} = $self->overlay (-1, 0, length ($msg), 1, urxvt::OVERLAY_RSTYLE, 0); 34Another example: Programs I use often output "absolute path: " at the
46 $ov->set (0, 0, $msg); 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):
47 38
48 $timers->{t1} = 39 URxvt.selection.pattern-0: ^(/[^:]+):\
49 urxvt::timer
50 ->new
51 ->start ((int urxvt::NOW) + 5) # make sure we update "on" the second
52 ->interval (1)
53 ->cb (sub { delete $timers->{ov}; delete $timers->{t1}; });
54}
55 40
41You can look at the source of the selection extension to see more
42interesting uses, such as parsing a line from beginning to end.
43
44This extension also offers following bindable keyboard commands:
45
46=over 4
47
48=item rot13
49
50Rot-13 the selection when activated. Used via keyboard trigger:
51
52 URxvt.keysym.C-M-r: perl:selection:rot13
53
54=back
55
56=cut
57
56sub on_keyboard_command { 58sub on_user_command {
57 my ($self, $cmd) = @_; 59 my ($self, $cmd) = @_;
58 60
59 $cmd eq "selection:rot13" 61 $cmd eq "selection:rot13"
60 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection); 62 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection);
61 63
62 $cmd eq "selection:remote-pastebin" 64 ()
63 and upload_paste ($self); 65}
64 66
65 () 67sub on_keyboard_dispatch {
68 &on_user_command;
66} 69}
67 70
68sub on_init { 71sub on_init {
69 my ($self) = @_; 72 my ($self) = @_;
70 73
74 if (defined (my $res = $self->resource ("cutchars"))) {
75 $res = $self->locale_decode ($res);
76 push @{ $self->{patterns} }, qr{\G [\Q$res\E[:space:]]* ([^\Q$res\E[:space:]]+) }x;
77 }
78
71 for (my $idx = 0; defined (my $res = $self->x_resource ("selection.pattern-$idx")); $idx++) { 79 for (my $idx = 0; defined (my $res = $self->x_resource ("selection.pattern-$idx")); $idx++) {
72 no re 'eval'; # just to be sure
73 $res = utf8::encode $self->locale_decode ($res); 80 $res = $self->locale_decode ($res);
74 push @{ $self->{patterns} }, qr/$res/; 81 push @{ $self->{patterns} }, qr/$res/;
75 } 82 }
83
84 $self->{enabled} = 1;
85
86 push @{ $self->{term}{option_popup_hook} }, sub {
87 ("new selection" => $self->{enabled}, sub { $self->{enabled} = shift })
88 };
76 89
77 () 90 ()
78} 91}
79 92
80# "find interetsing things"-patterns 93# "find interesting things"-patterns
81my @mark_patterns = ( 94my @mark_patterns = (
95# qr{ ([[:word:]]+) }x,
96 qr{ ([^[:space:]]+) }x,
97
82 # common types of "parentheses" 98 # common types of "parentheses"
99 qr{ (?<![^[:space:]]) [`'] ([^`']+) [`'] (?![^[:space:]]) }x,
83 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space]]) }x, 100 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space:]]) }x,
84 qr{ (?<![^[:space:]]) ` ([^`']+) ' (?![^[:space]]) }x, 101 qr{ (?<![^[:space:]]) ([^“”]+) (?![^[:space:]]) }x,
102
103 qr{ (?<![^[:space:]]) (' [^[:space:]] [^']* ') }x,
104 qr{ (' [^']* [^[:space:]] ') (?![^[:space:]]) }x,
105 qr{ (?<![^[:space:]]) (` [^[:space:]] [^']* ') }x,
106 qr{ (` [^']* [^[:space:]] ') (?![^[:space:]]) }x,
85 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x, 107 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x,
86 qr{ (" [^"]* [^[:space:]] ") (?![^[:space]]) }x, 108 qr{ (" [^"]* [^[:space:]] ") (?![^[:space:]]) }x,
87 qr{ \< ([^<>[:space:]]+) \> }x, 109
88 qr{ \{ ([^{}[:space:]]+) \} }x, 110 qr{ \{ ([^\{\}]+) \} }x,
89 qr{ \[ ([^{}[:space:]]+) \] }x,
90 qr{ \( ([^()[:space:]]+) \) }x, 111 qr{ \( ([^\(\)]+) \) }x,
112 qr{ \[ ([^\[\]]+) \] }x,
113 qr{ \< ([^\<\>]+) \> }x,
91 114
92 # urls, just a heuristic 115 # urls, just a heuristic
93 qr{( 116 qr{(
94 (?:https?|ftp|news|mailto|file)://[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~]+ 117 (?:https?://|ftp://|news://|mailto:|file://|\bwww\.)[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~#]+
95 [ab-zA-Z0-9\-\@;\/?:&=%\$_+!*\x27()~] # exclude some trailing characters (heuristic) 118 [ab-zA-Z0-9\-\@;\/?:&=%\$_+*()~] # exclude some trailing characters (heuristic)
96 )}x, 119 )}x,
97 120
98 # shell-like argument quoting, basically always matches 121 # shell-like argument quoting, basically always matches
99 qr{\G [\ \t|&;<>()] *( 122 qr{\G [\ \t|&;<>()]* (
100 (?: 123 (?:
101 [^\\"'\ \t|&;<>()]+ 124 [^\\"'\ \t|&;<>()]+
102 | \\. 125 | \\.
103 | " (?: [^\\"]+ | \\. )* " 126 | " (?: [^\\"]+ | \\. )* "
104 | ' [^']* ' 127 | ' [^']* '
113); 136);
114 137
115sub on_sel_extend { 138sub on_sel_extend {
116 my ($self, $time) = @_; 139 my ($self, $time) = @_;
117 140
141 $self->{enabled}
142 or return;
143
118 my ($row, $col) = $self->selection_mark; 144 my ($row, $col) = $self->selection_mark;
119 my $line = $self->line ($row); 145 my $line = $self->line ($row);
120 my $text = $line->t; 146 my $text = $line->t;
121 my $markofs = $line->offset_of ($row, $col); 147 my $markofs = $line->offset_of ($row, $col);
122 my $curlen = $line->offset_of ($self->selection_end) 148 my $curlen = $line->offset_of ($self->selection_end)
123 - $line->offset_of ($self->selection_beg); 149 - $line->offset_of ($self->selection_beg);
124 150
125 my @matches; 151 my @matches;
126 152
127 # not doing matches in unicode mode helps speed 153 if ($markofs < $line->l) {
128 # enourmously here. working in utf-8 should be
129 # equivalent due to the magic of utf-8 encoding.
130 utf8::encode $text;
131 study $text; # _really_ helps, too :) 154 study $text; # _really_ helps, too :)
132 155
133 for my $regex (@mark_patterns, @{ $self->{patterns} }) { 156 for my $regex (@mark_patterns, @{ $self->{patterns} }) {
134 while ($text =~ /$regex/g) { 157 while ($text =~ /$regex/g) {
135 if ($-[1] <= $markofs and $markofs <= $+[1]) { 158 if ($-[1] <= $markofs and $markofs <= $+[1]) {
136 my $ofs = $-[1]; 159 my $ofs = $-[1];
137 my $match = $1; 160 my $match = $1;
138 161
139 for my $regex (@simplify_patterns) { 162 for my $regex (@simplify_patterns) {
140 if ($match =~ $regex) { 163 if ($match =~ $regex) {
141 $match = $1; 164 $match = $1;
142 $ofs += $-[1]; 165 $ofs += $-[1];
166 }
143 } 167 }
168
169 push @matches, [$ofs, length $match];
144 } 170 }
145
146 push @matches, [$ofs, length $match];
147 } 171 }
148 } 172 }
149 } 173 }
150 174
151 # whole line 175 # whole line

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines