Mercurial > emacs
changeset 65844:d5c276f89641
(global-map): Resync [home] and [end] bindings with C-a and C-e.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 04 Oct 2005 21:50:21 +0000 |
parents | e28dd6224eb2 |
children | 3c2a85b1a338 |
files | lisp/bindings.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/bindings.el Tue Oct 04 21:49:09 2005 +0000 +++ b/lisp/bindings.el Tue Oct 04 21:50:21 2005 +0000 @@ -748,7 +748,7 @@ ;; natural bindings for terminal keycaps --- defined in X keysym order (define-key global-map [C-S-backspace] 'kill-whole-line) -(define-key global-map [home] 'beginning-of-line) +(define-key global-map [home] 'move-beginning-of-line) (define-key global-map [C-home] 'beginning-of-buffer) (define-key global-map [M-home] 'beginning-of-buffer-other-window) (define-key esc-map [home] 'beginning-of-buffer-other-window) @@ -768,7 +768,7 @@ (define-key global-map [M-prior] 'scroll-other-window-down) (define-key esc-map [prior] 'scroll-other-window-down) (define-key esc-map [?\C-\S-v] 'scroll-other-window-down) -(define-key global-map [end] 'end-of-line) +(define-key global-map [end] 'move-end-of-line) (define-key global-map [C-end] 'end-of-buffer) (define-key global-map [M-end] 'end-of-buffer-other-window) (define-key esc-map [end] 'end-of-buffer-other-window)