リストを取得して変数に保存することはできますか? 走る
(ido-completing-read "prompt: " '("one" "two" "three" "four" "five") nil nil "t")
そして ido は候補のリストを生成します{two | three}
。私はこのようなものが欲しい
(setq my-desired-list (ido-completing-read-silent '("one" "two" "three" "four" "five") nil nil "t"))
my-desired-list
実行後の値は です("two" "three")
。私は ido に複雑な設定を使用しています。非常に特殊なフィルターを用意してchoices
おり、その結果を直接使用したいと考えています。