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.30 by elmex, Tue Jan 17 16:53:47 2006 UTC vs.
Revision 1.57 by root, Sat Apr 26 20:51:12 2014 UTC

1#! perl 1#! perl
2 2
3#:META:X_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 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
3sub on_keyboard_command { 58sub on_user_command {
4 my ($self, $cmd) = @_; 59 my ($self, $cmd) = @_;
5 60
6 $cmd eq "selection:rot13" 61 $cmd eq "selection:rot13"
7 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);
8 63
9 () 64 ()
10} 65}
11 66
67sub on_keyboard_dispatch {
68 &on_user_command;
69}
70
12sub on_init { 71sub on_init {
13 my ($self) = @_; 72 my ($self) = @_;
14 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
15 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++) {
16 no re 'eval'; # just to be sure
17 $res = utf8::encode $self->locale_decode ($res); 80 $res = $self->locale_decode ($res);
18 push @{ $self->{patterns} }, qr/$res/; 81 push @{ $self->{patterns} }, qr/$res/;
19 } 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 };
20 89
21 () 90 ()
22} 91}
23 92
24# "find interetsing things"-patterns 93# "find interesting things"-patterns
25my @mark_patterns = ( 94my @mark_patterns = (
95# qr{ ([[:word:]]+) }x,
96 qr{ ([^[:space:]]+) }x,
97
26 # common types of "parentheses" 98 # common types of "parentheses"
99 qr{ (?<![^[:space:]]) [`'] ([^`']+) [`'] (?![^[:space:]]) }x,
27 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space]]) }x, 100 qr{ (?<![^[:space:]]) ‘ ([^‘’]+) ’ (?![^[:space:]]) }x,
28 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,
29 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x, 107 qr{ (?<![^[:space:]]) (" [^[:space:]] [^"]* ") }x,
30 qr{ (" [^"]* [^[:space:]] ") (?![^[:space]]) }x, 108 qr{ (" [^"]* [^[:space:]] ") (?![^[:space:]]) }x,
31 qr{ \< ([^<>[:space:]]+) \> }x, 109
32 qr{ \{ ([^{}[:space:]]+) \} }x, 110 qr{ \{ ([^\{\}]+) \} }x,
33 qr{ \[ ([^{}[:space:]]+) \] }x,
34 qr{ \( ([^()[:space:]]+) \) }x, 111 qr{ \( ([^\(\)]+) \) }x,
112 qr{ \[ ([^\[\]]+) \] }x,
113 qr{ \< ([^\<\>]+) \> }x,
35 114
36 # urls, just a heuristic 115 # urls, just a heuristic
37 qr{( 116 qr{(
38 (?:https?|ftp|news|mailto|file)://[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~]+ 117 (?:https?://|ftp://|news://|mailto:|file://|\bwww\.)[ab-zA-Z0-9\-\@;\/?:&=%\$_.+!*\x27(),~#]+
39 [ab-zA-Z0-9\-\@;\/?:&=%\$_+!*\x27()~] # exclude some trailing characters (heuristic) 118 [ab-zA-Z0-9\-\@;\/?:&=%\$_+*()~] # exclude some trailing characters (heuristic)
40 )}x, 119 )}x,
41 120
42 # shell-like argument quoting, basically always matches 121 # shell-like argument quoting, basically always matches
43 qr{\G [\ \t|&;<>()] *( 122 qr{\G [\ \t|&;<>()]* (
44 (?: 123 (?:
45 [^\\"'\ \t|&;<>()]+ 124 [^\\"'\ \t|&;<>()]+
46 | \\. 125 | \\.
47 | " (?: [^\\"]+ | \\. )* " 126 | " (?: [^\\"]+ | \\. )* "
48 | ' [^']* ' 127 | ' [^']* '
57); 136);
58 137
59sub on_sel_extend { 138sub on_sel_extend {
60 my ($self, $time) = @_; 139 my ($self, $time) = @_;
61 140
141 $self->{enabled}
142 or return;
143
62 my ($row, $col) = $self->selection_mark; 144 my ($row, $col) = $self->selection_mark;
63 my $line = $self->line ($row); 145 my $line = $self->line ($row);
64 my $text = $line->t; 146 my $text = $line->t;
65 my $markofs = $line->offset_of ($row, $col); 147 my $markofs = $line->offset_of ($row, $col);
66 my $curlen = $line->offset_of ($self->selection_end) 148 my $curlen = $line->offset_of ($self->selection_end)
67 - $line->offset_of ($self->selection_beg); 149 - $line->offset_of ($self->selection_beg);
68 150
69 my @matches; 151 my @matches;
70 152
71 # not doing matches in unicode mode helps speed 153 if ($markofs < $line->l) {
72 # enourmously here. working in utf-8 should be
73 # equivalent due to the magic of utf-8 encoding.
74 utf8::encode $text;
75 study $text; # _really_ helps, too :) 154 study $text; # _really_ helps, too :)
76 155
77 for my $regex (@mark_patterns, @{ $self->{patterns} }) { 156 for my $regex (@mark_patterns, @{ $self->{patterns} }) {
78 while ($text =~ /$regex/g) { 157 while ($text =~ /$regex/g) {
79 if ($-[1] <= $markofs and $markofs <= $+[1]) { 158 if ($-[1] <= $markofs and $markofs <= $+[1]) {
80 my $ofs = $-[1]; 159 my $ofs = $-[1];
81 my $match = $1; 160 my $match = $1;
82 161
83 for my $regex (@simplify_patterns) { 162 for my $regex (@simplify_patterns) {
84 if ($match =~ $regex) { 163 if ($match =~ $regex) {
85 $match = $1; 164 $match = $1;
86 $ofs += $-[1]; 165 $ofs += $-[1];
166 }
87 } 167 }
168
169 push @matches, [$ofs, length $match];
88 } 170 }
89
90 push @matches, [$ofs, length $match];
91 } 171 }
92 } 172 }
93 } 173 }
94 174
95 # whole line 175 # whole line

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines