My Emacs system satisfies the following three conditions:
- The Emacs packages
helmandhelm-projectileare installed on it. - The directory
~/MyProj/is recognized as aprojectileproject (it is a Git directory). ~/MyProj/contains the following text files (and possibly other files):README.mdfile1file2
Consider the following scenario:
- Open a new Emacs session.
- Execute
M-x cd <RET> ~/MyProj <RET>to switch the default directory to the project directory. - Execute
C-c p fto run theprojectile-find-filecommand.
The mini-buffer now displays:
[-] Find file: {README.md | file1 | file2}
Why are the completions listed horizontally in the mini-buffer rather than vertically in a separate helm window, as is the norm with helm commands? Compare the above screencap to the following, resulting from executing C-x c C-x C-f (= helm-find-files).
I find the latter display style more convenient that the former. Is it possible to view the results of the various projectile commands this way?

