From 2b85871805526261b6c3600a4fd103538ebee96f Mon Sep 17 00:00:00 2001 From: Initial Zuo Date: Sat, 30 Apr 2016 01:39:05 +0800 Subject: [PATCH] Fix C-a behavior (#991) --- core/prelude-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/prelude-mode.el b/core/prelude-mode.el index b291e70..8320332 100644 --- a/core/prelude-mode.el +++ b/core/prelude-mode.el @@ -43,6 +43,7 @@ (define-key map (kbd "C-c y") 'prelude-youtube) (define-key map (kbd "C-c U") 'prelude-duckduckgo) ;; mimic popular IDEs binding, note that it doesn't work in a terminal session + (define-key map (kbd "C-a") 'crux-move-beginning-of-line) (define-key map [(shift return)] 'crux-smart-open-line) (define-key map (kbd "M-o") 'crux-smart-open-line) (define-key map [(control shift return)] 'crux-smart-open-line-above)