]> git.eshelyaron.com Git - emacs.git/commitdiff
(reveal-mode-map): Bind C-a to beginning-of-line.
authorKim F. Storm <storm@cua.dk>
Mon, 7 Mar 2005 11:12:40 +0000 (11:12 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 7 Mar 2005 11:12:40 +0000 (11:12 +0000)
lisp/reveal.el

index 4d2742a48101fbef0d9cee4eb82c3448cc4c144f..eb6b4519f38528e228a7b1373fb326ecb618d7cd 100644 (file)
 
 (defvar reveal-mode-map
   (let ((map (make-sparse-keymap)))
-    ;; Override the default move-end-of-line which skips valuable
-    ;; invisible text.
+    ;; Override the default move-beginning-of-line and move-end-of-line
+    ;; which skips valuable invisible text.
+    (define-key map [?\C-a] 'beginning-of-line)
     (define-key map [?\C-e] 'end-of-line)
     map))