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.6 by root, Tue Jan 3 19:12:53 2006 UTC vs.
Revision 1.7 by root, Tue Jan 3 19:42:53 2006 UTC

1#! perl 1#! perl
2 2
3sub on_keyboard_command { 3sub on_keyboard_command {
4 my ($term, $cmd) = @_; 4 my ($self, $cmd) = @_;
5 5
6 $cmd eq "selection:rot13" 6 $cmd eq "selection:rot13"
7 and $term->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $term->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
12sub on_sel_extend { 12sub on_sel_extend {
13 warn "hiya\n";#d# 13 my ($self) = @_;
14 warn $self->selection;
14 () 15 ()
15} 16}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines