diff options
| author | Luc Teirlinck | 2003-06-10 04:06:10 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2003-06-10 04:06:10 +0000 |
| commit | d391e05c14dded8641136ff33fb8a672b9e607a7 (patch) | |
| tree | 28764a0bd1395e6c482c5a8b7b537187a6c1d054 | |
| parent | 147e214c5b3034eac2757f0adaa48cc3d6d6370b (diff) | |
| download | emacs-d391e05c14dded8641136ff33fb8a672b9e607a7.tar.gz emacs-d391e05c14dded8641136ff33fb8a672b9e607a7.zip | |
(global-map): Bind `kill-whole-line' to C-S-<backspace>.
Remove M-S-<backspace> binding: too close to C-M-<backspace>.
| -rw-r--r-- | lisp/bindings.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 5183f871c02..967713e9734 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -743,7 +743,7 @@ language you are using." | |||
| 743 | ;(define-key global-map [delete] 'backward-delete-char) | 743 | ;(define-key global-map [delete] 'backward-delete-char) |
| 744 | 744 | ||
| 745 | ;; natural bindings for terminal keycaps --- defined in X keysym order | 745 | ;; natural bindings for terminal keycaps --- defined in X keysym order |
| 746 | (define-key global-map [M-S-backspace] 'kill-whole-line) | 746 | (define-key global-map [C-S-backspace] 'kill-whole-line) |
| 747 | (define-key global-map [home] 'beginning-of-line) | 747 | (define-key global-map [home] 'beginning-of-line) |
| 748 | (define-key global-map [C-home] 'beginning-of-buffer) | 748 | (define-key global-map [C-home] 'beginning-of-buffer) |
| 749 | (define-key global-map [M-home] 'beginning-of-buffer-other-window) | 749 | (define-key global-map [M-home] 'beginning-of-buffer-other-window) |