是否可以获取列表并将其保存在变量中?我跑
(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
,我想直接使用结果。