Set prefix key before loading helm-projectile

Because helm-projectile loads helm-config, prefix key must also be set
before helm-projectile. Comment is added for future reference
This commit is contained in:
Tu Do 2014-09-10 14:51:53 +07:00
parent ce006a3beb
commit 241fcc76d6

View file

@ -38,13 +38,15 @@
(require 'helm) (require 'helm)
(require 'helm-grep) (require 'helm-grep)
(require 'helm-files) (require 'helm-files)
(require 'helm-projectile)
;; The default "C-x c" is quite close to "C-x C-c", which quits Emacs. ;; 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' ;; Note: this must be placed before require `helm-config'. If `helm-projectile' is
;; available, it must also be set before `helm-projectile', since `helm-projectile'
;; loads `helm-config'
(setq helm-command-prefix-key "C-c h") (setq helm-command-prefix-key "C-c h")
(require 'helm-config) (require 'helm-config)
(require 'helm-projectile)
(when (executable-find "curl") (when (executable-find "curl")
(setq helm-google-suggest-use-curl-p t)) (setq helm-google-suggest-use-curl-p t))