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.11 by root, Wed Jan 4 20:43:38 2006 UTC vs.
Revision 1.15 by root, Sun Jan 8 01:30:32 2006 UTC

7 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection); 7 and $self->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $self->selection);
8 8
9 () 9 ()
10} 10}
11 11
12my @patterns = ( 12my @mark_patterns = (
13 # urls, just a heuristic 13 # urls, just a heuristic
14 qr{( 14 qr{(
15 (?:https?|ftp|news|mailto|file)://[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),]+ 15 (?:https?|ftp|news|mailto|file)://[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~]+
16 [^.] # do not include a trailing dot, its wrong too often 16 [ab-zA-Z0-9\-\@;\/?:&=%\$_+!*\x27(),~] # do not include a trailing dot, its wrong too often
17 )}x, 17 )}x,
18
19 # common forms of quoting
20 qr{(?:^|\s) [‘`] ([^‘`’']+) [’'] (?:\s|$)}x,
18 21
19 # shell-like argument quoting 22 # shell-like argument quoting
20 qr{\G [\ \t|&;<>()] *( 23 qr{\G [\ \t|&;<>()] *(
21 (?: 24 (?:
22 [^\\"'\ \t|&;<>()]+ 25 [^\\"'\ \t|&;<>()]+
23 | \\. 26 | \\.
24 | " ([^\\"]+ | \\. )* " 27 | " (?: [^\\"]+ | \\. )* "
25 | ' [^']* ' 28 | ' [^']* '
26 )+ 29 )+
27 )}xs, 30 )}x,
31);
32
33my @simplify_patterns = (
34 qr{^"([^\\"'\ \t|&;<>()*?]+)"$}, # "simple" => simple
35 qr{^(.*)[,\-]$},
28); 36);
29 37
30sub on_sel_extend { 38sub on_sel_extend {
31 my ($self) = @_; 39 my ($self) = @_;
32 40
33 my ($row, $col) = $self->selection_mark; 41 my ($row, $col) = $self->selection_mark;
34 my $line = $self->line ($row); 42 my $line = $self->line ($row);
35 my $offset = $line->offset_of ($row, $col); 43 my $offset = $line->offset_of ($row, $col);
36 my $text = $line->t; 44 my $text = $line->t;
37 45
38 for my $regex (@patterns) { 46 for my $regex (@mark_patterns) {
39 while ($text =~ /$regex/g) { 47 while ($text =~ /$regex/g) {
40 if ($-[1] <= $offset and $offset <= $+[1]) { 48 if ($-[1] <= $offset and $offset <= $+[1]) {
49 my $match = $1;
50 my ($ofs1, $ofs2) = ($-[1], $+[1]);
51
52 for my $regex (@simplify_patterns) {
53 if ($match =~ $regex) {
54 $match = $1;
55 $ofs1 += $-[1];
56 $ofs2 = $ofs1 + length $match;
57 }
58 }
59
41 $self->selection_beg ($line->coord_of ($-[1])); 60 $self->selection_beg ($line->coord_of ($ofs1));
42 $self->selection_end ($line->coord_of ($+[1])); 61 $self->selection_end ($line->coord_of ($ofs2));
43 return 1; 62 return 1;
44 } 63 }
45 } 64 }
46 } 65 }
47 66

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines