diff options
| author | Kim F. Storm | 2005-03-07 11:12:21 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-03-07 11:12:21 +0000 |
| commit | d17a638d58d5c7a82d842601d70dee0f3e41ed84 (patch) | |
| tree | f0b5db0ff0b5f3c858b0e294284b0071e71eed2a | |
| parent | a54595d40e7716d7da89e8fe10160af452c230d4 (diff) | |
| download | emacs-d17a638d58d5c7a82d842601d70dee0f3e41ed84.tar.gz emacs-d17a638d58d5c7a82d842601d70dee0f3e41ed84.zip | |
(global-map): Bind C-a to move-beginning-of-line.
| -rw-r--r-- | lisp/bindings.el | 1 |
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." | |||
| 700 | (define-key global-map "\C-n" 'next-line) | 700 | (define-key global-map "\C-n" 'next-line) |
| 701 | (define-key global-map "\C-p" 'previous-line) | 701 | (define-key global-map "\C-p" 'previous-line) |
| 702 | (define-key ctl-x-map "\C-n" 'set-goal-column) | 702 | (define-key ctl-x-map "\C-n" 'set-goal-column) |
| 703 | (define-key global-map "\C-a" 'move-beginning-of-line) | ||
| 703 | (define-key global-map "\C-e" 'move-end-of-line) | 704 | (define-key global-map "\C-e" 'move-end-of-line) |
| 704 | (define-key esc-map "g" 'goto-line) | 705 | (define-key esc-map "g" 'goto-line) |
| 705 | 706 | ||