How to show all of minibuffer commands history in Emacs?
elisp, emacs, input-history, minibuffer
Solution
The variable is `command-history`, not `minibuffer-history`.
You can use `M-x list-command-history`. Just customize option `list-command-history-max`, if you want to see the whole history.
Or look directly at variable `command-history` using `C-h v`. But see option `history-length`, which controls how many commands to keep in `command-history`.
Problem
I see I can go back history of command by using "M-p" in minibuffer. But I want to see all of command I used in minibuffer. Thanks.