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.42 by root, Mon Nov 19 09:13:47 2007 UTC vs.
Revision 1.61 by sf-exg, Mon Jun 9 19:54:26 2014 UTC

1#! perl 1#! perl
2
3#:META:RESOURCE:%.pattern-0:string:first selection pattern
4
5=head1 NAME
6
7selection - more intelligent selection (enabled by default)
8
9=head1 DESCRIPTION
10
11This extension tries to be more intelligent when the user extends
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>.
15
16A double-click usually selects the word under the cursor, further clicks
17will enlarge the selection.
18
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:
22
23 URxvt.selection.pattern-0: perl-regex
24 URxvt.selection.pattern-1: perl-regex
25 ...
26
27The index number (0, 1...) must not have any holes, and each regex must
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:
31
32 URxvt.selection.pattern-0: \\|([^|]+)\\|
33
34Another example: Programs I use often output "absolute path: " at the
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):
38
39 URxvt.selection.pattern-0: ^(/[^:]+):\
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 the following actions:
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
2 59
3sub on_user_command { 60sub on_user_command {
4 my ($self, $cmd) = @_; 61 my ($self, $cmd) = @_;
5 62
6 $cmd eq "selection:rot13" 63 $cmd eq "selection:rot13"
64 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection);
65
66 ()
67}
68
69sub on_action {
70 my ($self, $action) = @_;
71
72 $action eq "rot13"
7 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection); 73 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection);
8 74
9 () 75 ()
10} 76}
11 77
17 push @{ $self->{patterns} }, qr{\G [\Q$res\E[:space:]]* ([^\Q$res\E[:space:]]+) }x; 83 push @{ $self->{patterns} }, qr{\G [\Q$res\E[:space:]]* ([^\Q$res\E[:space:]]+) }x;
18 } 84 }
19 85
20 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++) {
21 $res = $self->locale_decode ($res); 87 $res = $self->locale_decode ($res);
22 utf8::encode $res;
23 push @{ $self->{patterns} }, qr/$res/; 88 push @{ $self->{patterns} }, qr/$res/;
24 } 89 }
25 90
26 $self->{enabled} = 1; 91 $self->{enabled} = 1;
27 92
32 () 97 ()
33} 98}
34 99
35# "find interesting things"-patterns 100# "find interesting things"-patterns
36my @mark_patterns = ( 101my @mark_patterns = (
37 qr{ ([[:word:]]+) }x, 102# qr{ ([[:word:]]+) }x,
38 qr{ ([^[:space:]]+) }x, 103 qr{ ([^[:space:]]+) }x,
39 104
40 # common types of "parentheses" 105 # common types of "parentheses"
106 qr{ (?<![^[:space:]]) [`'] ([^`']+) [`'] (?![^[:space:]]) }x,
41 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space:]]) }x, 107 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space:]]) }x,
42 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,
43 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x, 114 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x,
44 qr{ (" [^"]* [^[:space:]] ") (?![^[:space:]]) }x, 115 qr{ (" [^"]* [^[:space:]] ") (?![^[:space:]]) }x,
45 qr{ \< ([^<>[:space:]]+) \> }x, 116
46 qr{ \{ ([^{}[:space:]]+) \} }x, 117 qr{ \{ ([^\{\}]+) \} }x,
47 qr{ \[ ([^{}[:space:]]+) \] }x,
48 qr{ \( ([^()[:space:]]+) \) }x, 118 qr{ \( ([^\(\)]+) \) }x,
119 qr{ \[ ([^\[\]]+) \] }x,
120 qr{ \< ([^\<\>]+) \> }x,
49 121
50 # urls, just a heuristic 122 # urls, just a heuristic
51 qr{( 123 qr{(
52 (?:https?://|ftp://|news://|mailto:|file://|\bwww\.)[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~#]+ 124 (?:https?://|ftp://|news://|mailto:|file://|\bwww\.)[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~#]+
53 [ab-zA-Z0-9\-\@;\/?:&=%\$_+*()~] # exclude some trailing characters (heuristic) 125 [ab-zA-Z0-9\-\@;\/?:&=%\$_+*()~] # exclude some trailing characters (heuristic)
84 - $line->offset_of ($self->selection_beg); 156 - $line->offset_of ($self->selection_beg);
85 157
86 my @matches; 158 my @matches;
87 159
88 if ($markofs < $line->l) { 160 if ($markofs < $line->l) {
89 # convert markofs from character to UTF-8 offset space
90 {
91 my $prefix = substr $text, 0, $markofs;
92 utf8::encode $prefix;
93 $markofs = length $prefix;
94 }
95
96 # not doing matches in unicode mode helps speed
97 # enourmously here. working in utf-8 should be
98 # equivalent due to the magic of utf-8 encoding.
99 utf8::encode $text;
100 study $text; # _really_ helps, too :) 161 study $text; # _really_ helps, too :)
101 162
102 for my $regex (@mark_patterns, @{ $self->{patterns} }) { 163 for my $regex (@mark_patterns, @{ $self->{patterns} }) {
103 while ($text =~ /$regex/g) { 164 while ($text =~ /$regex/g) {
104 if ($-[1] <= $markofs and $markofs <= $+[1]) { 165 if ($-[1] <= $markofs and $markofs <= $+[1]) {
124 for (sort { $a->[1] <=> $b->[1] or $b->[0] <=> $a->[0] } @matches) { 185 for (sort { $a->[1] <=> $b->[1] or $b->[0] <=> $a->[0] } @matches) {
125 my ($ofs, $len) = @$_; 186 my ($ofs, $len) = @$_;
126 187
127 next if $len <= $curlen; 188 next if $len <= $curlen;
128 189
129 # convert back from UTF-8 offset space to character space
130 {
131 my $length = substr "$text ", $ofs, $len;
132 utf8::decode $length;
133 $len = length $length;
134 }
135 {
136 my $prefix = substr $text, 0, $ofs;
137 utf8::decode $prefix;
138 $ofs = length $prefix;
139 }
140
141 $self->selection_beg ($line->coord_of ($ofs)); 190 $self->selection_beg ($line->coord_of ($ofs));
142 $self->selection_end ($line->coord_of ($ofs + $len)); 191 $self->selection_end ($line->coord_of ($ofs + $len));
143 return 1; 192 return 1;
144 } 193 }
145 194

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines