Dr. Volker Zell wrote:
Hi
When I do C-h k and then Control Insert or Shift Insert I get:
C-insert runs `copy-primary-selection'
Sh-insert runs `yank-clipboard-selection'
but C-h k and then pressing Shift Delete gives me:
DEL runs `scroll-down'
It seems that Sh-delete is not recognized on my system.
Any hint ?
x-init.el has:
;; Motif-ish bindings
;; The following two were generally unliked.
;;(define-key global-map '(shift delete) 'kill-primary-selection)
;;(define-key global-map '(control delete) 'delete-primary-selection)
(define-key global-map '(shift insert) 'yank-clipboard-selection)
(define-key global-map '(control insert) 'copy-primary-selection)
I just added
(define-key global-map '(shift delete) 'kill-primary-selection)
(define-key global-map '(control delete) 'delete-primary-selection)
to my ~/.emacs.
--
Glynn Clements <glynn(a)sensei.co.uk>