emacs“查找文件:”默认路径
我在 Windows 上使用 emacs。我想知道如何更改 emacs 中的默认“查找文件:”路径,即当我们按“Cx Cf”时,我希望默认文件路径指向我的文档目录而不是“c:\emacs-**\”垃圾桶/”。
I am using emacs on windows. I would like to know how to change the default "Find File:" path in emacs i.e. When we press "C-x C-f" I want the default file path to point to my Documents directory and not to "c:\emacs-**\bin/".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(4)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在访问文件的缓冲区中,访问新文件 (Cx Cf) 时看到的默认路径是包含当前缓冲区文件的目录。
为了使用更合理的内容覆盖值“c:\emacs-**\bin/”,请在 .emacs 文件中设置
default-directory
变量:请注意,路径值应以斜杠(或 Windows 上的反斜杠)。
但是,您可能还需要考虑更改 HOME 环境变量,默认情况下,这是变量
default-directory
在启动时指向的内容(除非设置为如上所示的其他值)。In a buffer that is visiting a file, the default path you see when you visit a new file (C-x C-f) is the directory that contains the current buffer's file.
In order to override the value "c:\emacs-**\bin/" with something more sensible, set the
default-directory
variable in your .emacs file:Note that the path value should end with a slash (or backslash on Windows).
However, you might also want to consider changing the value of your HOME environment variable, as by default, this is what the variable
default-directory
points at at startup (unless set to some other value like shown above).