1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

([C-backspace]): Bind C-backspace to kill-word.

This commit is contained in:
Gerd Moellmann 2000-12-22 13:18:44 +00:00
parent d25cc9a9b8
commit 27940e1f01

View File

@ -766,7 +766,8 @@ language you are using."
(global-set-key [C-right] 'forward-word)
(global-set-key [C-left] 'backward-word)
;; This is not quite compatible, but at least is analogous
(global-set-key [C-delete] 'backward-kill-word)
(global-set-key [C-delete] 'backward-kill-word)
(global-set-key [C-backspace] 'kill-word)
;; This is "move to the clipboard", or as close as we come.
(global-set-key [S-delete] 'kill-region)