--- rxvt-unicode/src/perl/selection 2006/01/02 21:35:01 1.2 +++ rxvt-unicode/src/perl/selection 2006/01/02 21:36:20 1.4 @@ -1,6 +1,10 @@ +#! perl + sub on_keyboard_command { my ($term, $cmd) = @_; $cmd eq "selection:rot13" and $term->selection (map { y/A-Za-z/N-ZA-Mn-za-m/; $_ } $term->selection); + + () }