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.71 by root, Mon Jan 9 23:18:49 2006 UTC vs.
Revision 1.74 by root, Tue Jan 10 04:26:54 2006 UTC

66=item selection-popup (enabled by default) 66=item selection-popup (enabled by default)
67 67
68Binds a popup menu to Ctrl-Button3 that lets you convert the selection 68Binds a popup menu to Ctrl-Button3 that lets you convert the selection
69text into various other formats/action. 69text into various other formats/action.
70 70
71=item searchable-scrollback (enabled by default) 71=item searchable-scrollback<hotkey> (enabled by default)
72 72
73Adds regex search functionality to the scrollback buffer, triggered by a 73Adds regex search functionality to the scrollback buffer, triggered
74hotkey (default: C<M-s>). When in search mode, terminal input/output is 74by a hotkey (default: C<M-s>). When in search mode, normal terminal
75input/output is suspended.
76
75suspended, C</> starts an incremental regex search, C<n> searches further, 77C</> starts an incremental regex search, C<n> searches further, C<p> or
76C<p> jumps to the previous match. C<enter> leaves search mode at the 78C<N> jump to the previous match, C<G> jumps to the bottom and clears the
77current position and C<escape> returns to the original position. 79history, C<enter> leaves search mode at the current position and C<escape>
80returns to the original position.
78 81
79=item digital-clock 82=item digital-clock
80 83
81Displays a digital clock using the built-in overlay. 84Displays a digital clock using the built-in overlay.
82 85
263can filter/change and output the text yourself by returning a true value 266can filter/change and output the text yourself by returning a true value
264and calling C<< $term->scr_add_lines >> yourself. Please note that this 267and calling C<< $term->scr_add_lines >> yourself. Please note that this
265might be very slow, however, as your hook is called for B<all> text being 268might be very slow, however, as your hook is called for B<all> text being
266output. 269output.
267 270
271=item on_tt_write $term, $octets
272
273Called whenever some data is written to the tty/pty and can be used to
274suppress or filter tty input.
275
268=item on_line_update $term, $row 276=item on_line_update $term, $row
269 277
270Called whenever a line was updated or changed. Can be used to filter 278Called whenever a line was updated or changed. Can be used to filter
271screen output (e.g. underline urls or other useless stuff). Only lines 279screen output (e.g. underline urls or other useless stuff). Only lines
272that are being shown will be filtered, and, due to performance reasons, 280that are being shown will be filtered, and, due to performance reasons,
457our $VERSION = 1; 465our $VERSION = 1;
458our $TERM; 466our $TERM;
459our @HOOKNAME; 467our @HOOKNAME;
460our %HOOKTYPE = map +($HOOKNAME[$_] => $_), 0..$#HOOKNAME; 468our %HOOKTYPE = map +($HOOKNAME[$_] => $_), 0..$#HOOKNAME;
461our %OPTION; 469our %OPTION;
470
462our $LIBDIR; 471our $LIBDIR;
472our $RESNAME;
473our $RESCLASS;
474our $RXVTNAME;
463 475
464BEGIN { 476BEGIN {
465 urxvt->bootstrap; 477 urxvt->bootstrap;
466 478
467 # overwrite perl's warn 479 # overwrite perl's warn

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines