Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show all of minibuffer commands history in Emacs?

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.

like image 670
Kei Minagawa Avatar asked Feb 16 '14 11:02

Kei Minagawa


1 Answers

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.

like image 54
Drew Avatar answered Sep 19 '22 09:09

Drew