When I tab-complete in a minibuffer and Emacs displays a completion list in a new buffer, how do I switch to that buffer without using the mouse?
I tried C-x o
, but that just switched to the first buffer, out of which I entered the minibuffer.
I also tried C-x b
, but that gives me command attempted to use minibuffer while in minibuffer
.
Lastly I tried C-x <C-right>
, which gives me cannot switch buffers in minibuffer window
.
EDIT: I spoke about minibuffer completion in my example, but being able to access the completion list (using the keyboard) from within a regular buffer is also important to me, and not working. The M-v
shortcut was suggested, but it only seems to work inside the minibuffer accessed by M-x
, in every other buffer I've tried, M-v
is bound to scroll down command
and does not switch to the completion list. I doesn't even seem to work in other minibuffers. For example, it doesn't work in the shell command minibuffer invoked by M-!
either.