Closed DamienCassou closed 8 years ago
When running emacs -Q and evaluating this:
emacs -Q
(require 'helm-config) (require 'projectile) (projectile-global-mode 1) (require 'helm-projectile) (helm-projectile-on) (find-file "~/.emacs.d") ;; adds a project to projectile roots (setq projectile-completion-system 'helm)
the command C-c p p is still bound to projectile-switch-project and not to helm-projectile-switch-project.
C-c p p
projectile-switch-project
helm-projectile-switch-project
Sorry for the noise, f41141a93aa6c03ffb9fdb294b3caa19803b1d72 fixes that.
When running
emacs -Q
and evaluating this:the command
C-c p p
is still bound toprojectile-switch-project
and not tohelm-projectile-switch-project
.