ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/urxvt.pm
(Generate patch)

Comparing rxvt-unicode/src/urxvt.pm (file contents):
Revision 1.88 by root, Thu Jan 12 12:05:28 2006 UTC vs.
Revision 1.89 by root, Thu Jan 12 12:10:06 2006 UTC

117 URxvt.selection-autotransform.0: transform 117 URxvt.selection-autotransform.0: transform
118 URxvt.selection-autotransform.1: transform 118 URxvt.selection-autotransform.1: transform
119 ... 119 ...
120 120
121For example, the following will transform selections of the form 121For example, the following will transform selections of the form
122C<word:number> into C<vi +$number $word>: 122C<filename:number>, often seen in compiler messages, into C<vi +$filename
123$word>:
123 124
124 URxvt.selection-autotransform.0: s/^(S+):(d+):?$/vi +$2 $1\\x0d/ 125 URxvt.selection-autotransform.0: s/^(\\S+):(\\d+):?$/vi +$2 \\Q$1\\E\\x0d/
125 126
126And this example matches the same,but replaces it with vi-commands you can 127And this example matches the same,but replaces it with vi-commands you can
127paste directory into your (vi :) editor: 128paste directly into your (vi :) editor:
128 129
129 URxvt.selection-autotransform.0: s/^(S+):(d+):?$/\\x1b:e $1\\x0d:$2\\x0d/ 130 URxvt.selection-autotransform.0: s/^(S+):(d+):?$/\\x1b:e \\Q$1\\E\\x0d:$2\\x0d/
130 131
131=item mark-urls 132=item mark-urls
132 133
133Uses per-line display filtering (C<on_line_update>) to underline urls and 134Uses per-line display filtering (C<on_line_update>) to underline urls and
134make them clickable. When middle-clicked, the program specified in the 135make them clickable. When middle-clicked, the program specified in the

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines