Is it possible to get the list and save it in variable? I run
(ido-completing-read "prompt: " '("one" "two" "three" "four" "five") nil nil "t")
and ido generates list of candidates {two | three}
. I want something like this
(setq my-desired-list (ido-completing-read-silent '("one" "two" "three" "four" "five") nil nil "t"))
The value of my-desired-list
after execution is ("two" "three")
.
I use complex settings for ido, it prepares very special filters for choices
and I want to use the results directly.