Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想编写一个需要文件名作为参数的脚本。我想利用 'ido-find-file' 来获取文件,因为它是选择文件名的好方法,但我不想这样打开文件,只需将它用作我的函数的参数。
ido-find-file内部用于ido-read-file-name询问 minibuffer 中的文件路径。
ido-find-file
ido-read-file-name
你可以像这样使用它:
(ido-read-file-name "my prompt: ")
只需使用read-file-name. 如果启用了 IDO(即如果用户喜欢 IDO),这将使用 IDO 的方法,如果用户喜欢另一种方法,则将使用另一种方法。
read-file-name