是否可以獲取列表並將其保存在變量中? 我跑獲取由ido生成的候選人列表
(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
準備了非常特殊的過濾器,我想直接使用結果。
我們正在處理文件,或框架或。 。 。 ? – lawlist
函數'ido-completion-read'獲得第二個參數中的任意列表。 – artscan