I have emacs set up so that when I type M-x
the helm completion buffer pops up. My problem is that helm wont let me select M-x align
if I have previously called M-x align-current
, because it is only letting me select the completion from the Command History List and not the list of all available commands.
Any idea how I can overcome this problem?
M-x
mapped tohelm-M-x
? – Tianxiang Xiong Mar 23 '17 at 02:21M-x
mapped tohelm-M-x
. – Andrew Mar 23 '17 at 02:36(helm-autoresize-mode t)
? This should resize the helm buffer to fit the completions, it may then also show the list of all available commands (not only the command history). – relativitaet Mar 23 '17 at 13:14