summaryrefslogtreecommitdiff
path: root/lisp/bindings.el
diff options
context:
space:
mode:
authorKim F. Storm <storm@cua.dk>2005-03-07 11:12:21 +0000
committerKim F. Storm <storm@cua.dk>2005-03-07 11:12:21 +0000
commitd17a638d58d5c7a82d842601d70dee0f3e41ed84 (patch)
treef0b5db0ff0b5f3c858b0e294284b0071e71eed2a /lisp/bindings.el
parenta54595d40e7716d7da89e8fe10160af452c230d4 (diff)
downloademacs-d17a638d58d5c7a82d842601d70dee0f3e41ed84.tar.gz
(global-map): Bind C-a to move-beginning-of-line.
Diffstat (limited to 'lisp/bindings.el')
-rw-r--r--lisp/bindings.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index 8ad82b95e72..59c58c5db2b 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -700,6 +700,7 @@ language you are using."
(define-key global-map "\C-n" 'next-line)
(define-key global-map "\C-p" 'previous-line)
(define-key ctl-x-map "\C-n" 'set-goal-column)
+(define-key global-map "\C-a" 'move-beginning-of-line)
(define-key global-map "\C-e" 'move-end-of-line)
(define-key esc-map "g" 'goto-line)