# HG changeset patch # User Kim F. Storm # Date 1110193941 0 # Node ID 6a79fa294dd4f2f47a72d58a7eb984b04d67dac3 # Parent 187f3c8273cc736befa57ffb91256ef17defd148 (global-map): Bind C-a to move-beginning-of-line. diff -r 187f3c8273cc -r 6a79fa294dd4 lisp/bindings.el --- a/lisp/bindings.el Mon Mar 07 11:12:10 2005 +0000 +++ b/lisp/bindings.el Mon Mar 07 11:12:21 2005 +0000 @@ -700,6 +700,7 @@ (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)