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.144 by root, Mon Aug 7 15:59:44 2006 UTC vs.
Revision 1.146 by root, Thu Aug 17 21:56:11 2006 UTC

346in the C<selection-pastebin-url> resource (again, the % is the placeholder 346in the C<selection-pastebin-url> resource (again, the % is the placeholder
347for the filename): 347for the filename):
348 348
349 URxvt.selection-pastebin.url: http://www.ta-sa.org/files/txt/% 349 URxvt.selection-pastebin.url: http://www.ta-sa.org/files/txt/%
350 350
351I<Note to xrdb users:> xrdb uses the C preprocessor, which might interpret
352the double C</> characters as comment start. Use C<\057\057> instead,
353which works regardless of wether xrdb is used to parse the resource file
354or not.
355
351=item example-refresh-hooks 356=item example-refresh-hooks
352 357
353Displays a very simple digital clock in the upper right corner of the 358Displays a very simple digital clock in the upper right corner of the
354window. Illustrates overwriting the refresh callbacks to create your own 359window. Illustrates overwriting the refresh callbacks to create your own
355overlays or changes. 360overlays or changes.
395=back 400=back
396 401
397=head2 Extension Objects 402=head2 Extension Objects
398 403
399Every perl extension is a perl class. A separate perl object is created 404Every perl extension is a perl class. A separate perl object is created
400for each terminal and each extension and passed as the first parameter to 405for each terminal, and each terminal has its own set of extenion objects,
401hooks. So extensions can use their C<$self> object without having to think 406which are passed as the first parameter to hooks. So extensions can use
402about other extensions, with the exception of methods and members that 407their C<$self> object without having to think about clashes with other
408extensions or other terminals, with the exception of methods and members
403begin with an underscore character C<_>: these are reserved for internal 409that begin with an underscore character C<_>: these are reserved for
404use. 410internal use.
405 411
406Although it isn't a C<urxvt::term> object, you can call all methods of the 412Although it isn't a C<urxvt::term> object, you can call all methods of the
407C<urxvt::term> class on this object. 413C<urxvt::term> class on this object.
408 414
409It has the following methods and data members: 415It has the following methods and data members:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines