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.
我在 Windows 上使用 Emacs。我的默认文件夹是c:/home,但我想d:/在 ido 模式下编辑我的文件?我试过//了,但那让我进去了c:/。
c:/home
d:/
//
c:/
目前,我使用C-f(改回正常的查找文件模式),但这首先破坏了使用 ido 模式的目的......
如评论中所述,您只需在 ido-find-file 中的 minibuffer 中键入“d:/”。您不需要在字符串的开头,它足够聪明,可以知道您要做什么。
C-x C-f d:/ MyFile.txt
C-x C-f
MyFile.txt
将指向您的文件D:/MyFile.txt
D:/MyFile.txt