Hi,

Is it possible to bind a key, say Pause, to act the same as S-Insert?
I couldn't find a way to do it with just configuration so I have been
trying to do it via a perl extension,

    sub paste {
       my ($self) = @_;

       $self->tt_write($self->selection);
       ()
    }

    sub on_user_command {
       my ($self, $cmd) = @_;

       if ($cmd eq "bind_paste:paste") {
          $self->paste;
       }
       ()
    }

However, that doesn't work for selections in other windows.

Peter


_______________________________________________
rxvt-unicode mailing list
[email protected]
http://lists.schmorp.de/cgi-bin/mailman/listinfo/rxvt-unicode

Reply via email to