From: Gerd Moellmann Date: Fri, 22 Dec 2000 13:18:44 +0000 (+0000) Subject: ([C-backspace]): Bind C-backspace to kill-word. X-Git-Tag: emacs-pretest-21.0.95~308 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=27940e1f01b319ffc95fae4bbafa8cd4d638f2b5;p=emacs.git ([C-backspace]): Bind C-backspace to kill-word. --- diff --git a/lisp/bindings.el b/lisp/bindings.el index f0903dcd0d2..4decb7a857e 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -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)