My Emacs system satisfies the following three conditions:
- The Emacs packages
helm
andhelm-projectile
are installed on it. - The directory
~/MyProj/
is recognized as aprojectile
project (it is a Git directory). ~/MyProj/
contains the following text files (and possibly other files):README.md
file1
file2
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 f
to run theprojectile-find-file
command.
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?