aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-22 13:18:44 +0000
committerGerd Moellmann2000-12-22 13:18:44 +0000
commit27940e1f01b319ffc95fae4bbafa8cd4d638f2b5 (patch)
tree78cd5caf3f67d6b9323ecf70454f0a70c2eaca1c
parentd25cc9a9b8c09d90b138f78e12854fac30b98409 (diff)
downloademacs-27940e1f01b319ffc95fae4bbafa8cd4d638f2b5.tar.gz
emacs-27940e1f01b319ffc95fae4bbafa8cd4d638f2b5.zip
([C-backspace]): Bind C-backspace to kill-word.
-rw-r--r--lisp/bindings.el3
1 files changed, 2 insertions, 1 deletions
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."
766(global-set-key [C-right] 'forward-word) 766(global-set-key [C-right] 'forward-word)
767(global-set-key [C-left] 'backward-word) 767(global-set-key [C-left] 'backward-word)
768;; This is not quite compatible, but at least is analogous 768;; This is not quite compatible, but at least is analogous
769(global-set-key [C-delete] 'backward-kill-word) 769(global-set-key [C-delete] 'backward-kill-word)
770(global-set-key [C-backspace] 'kill-word)
770;; This is "move to the clipboard", or as close as we come. 771;; This is "move to the clipboard", or as close as we come.
771(global-set-key [S-delete] 'kill-region) 772(global-set-key [S-delete] 'kill-region)
772 773