문제

Including the history list makes no difference at all. The colors still appear in the original order.

(setq foo '("blue" "green" "red"))
(ido-completing-read "Pick: " '("red" "green" "blue") nil t nil 'foo)

What is the function of the history list then? Is there an alternative way to change the order of elements based on history, like smex?

도움이 되었습니까?

해결책

History list is used when we press up/down while in minibuffer. It doesn't change the order of elements.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top