Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

emacs helm M-x: how to jump to the list of historical command

When I run M-x to open helm, it displays 2 lists, one is the list about the ALL command matching the pattern, another list is the hisotrial. How to quickly jump to the historical one?

like image 467
Daniel Wu Avatar asked Dec 25 '14 08:12

Daniel Wu


1 Answers

You can use C-o to switch between Helm sources (in your case jump to the historical one).

After helm Mx shows up, you can type C-c ? to display the numerous available bindings.

In my setup I bind M-o to helm-previous-source, so I use C-o, M-o, to navigate up/down sources, in addition to sources cycling (setq helm-move-to-line-cycle-in-source t).

like image 160
rimero Avatar answered Oct 15 '22 11:10

rimero