Adjust Helm prefix key

helm-command-prefix-key is already defined with defcustom in
helm-config.el. It must be set before helm-config.el to take
effect. With current setting, "C-x c" is used instead of "C-c h" and it
conflicts with the guide on homepage. "C-x c" makes it easy to press
"C-x C-c" to close Emacs when pressing fast enough. "C-c h" is also
originally used for Helm in Prelude.
This commit is contained in:
Tu Do 2014-09-10 14:00:59 +07:00
parent 99f1a43752
commit 9ee54fdff7

View file

@ -42,7 +42,7 @@
;; The default "C-x c" is quite close to "C-x C-c", which quits Emacs.
;; Note: this must be placed before require `helm-config'
(defvar helm-command-prefix-key "C-c h")
(setq helm-command-prefix-key "C-c h")
(require 'helm-config)