Re: Shift + delete
Glynn Clements <[email protected]> Wed, 18 Feb 2004 01:30:15 +0000
| Newsgroups | gmane.emacs.xemacs.general |
|---|---|
| Message-ID | <[email protected]> |
Richard Martin wrote: > I have been having a problem with the cut key (shift and delete) - it > just deletes the selection instead of placing into the cut and paste > buffer - then when i go and paste it inserts previous text??? > > i have my delete key set to delete selection. While C-insert and Sh-insert are bound by default, Sh-Delete isn't; you need to manually bind it to kill-primary-selection, e.g.: (define-key global-map '(shift delete) 'kill-primary-selection) -- Glynn Clements <[email protected]>