bbatsov / helm-projectile

Helm UI for Projectile
327 stars 71 forks source link

Does "C-c p 4 f" use helm UI? #112

Closed foreverqihe closed 6 years ago

foreverqihe commented 6 years ago

This is just a question about if C-c p 4 f is supported

Expected behavior

C-c p 4 f should show the helm UI

Actual behavior

ido ui is displayed

Steps to reproduce the problem

C-c p 4 f

Backtraces if necessary (M-x toggle-debug-on-error)

Environment & version information

xiongtx commented 6 years ago

C-p 4 f (projectile-find-file-other-window) is a Projectile command, not a helm-projectile command. There is no equivalent helm-projectile-find-file-other-window.

To get Helm completion, set projectile-completion-system to 'helm instead of 'ido (the default).

foreverqihe commented 6 years ago

Thank you @xiongtx