- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个文件夹 /var/~/
.在配置中 .emacs
我想从这个文件夹加载一些文件。
我尝试使用 (load-file "/var/~/foobar.el")
,但 emacs 警报 File error: Cannot open load file, ~/foobar.el
.
此外,我什至无法使用 c-x c-f
打开此文件夹下的文件。 .在 minibuffer 中,路径将自动重定向到我的家。
如何加载该文件夹中的文件?
最佳答案
您需要重命名您的目录。load-file
是一个简单的包装器 load
,它通过 substitute-in-file-name
传递给定的文件名.来自 substitute-in-file-name
的文档字符串(强调我的):
Substitute environment variables referred to in FILENAME. `$FOO' where FOO is an environment variable name means to substitute the value of that variable. The variable name should be terminated with a character not a letter, digit or underscore; otherwise, enclose the entire variable name in braces.
If `/~' appears, all of FILENAME through that `/' is discarded. If `//' appears, everything up to and including the first of those `/' is discarded.
substitute-in-file-name
扔掉之前的一切
/~
, 车削
/var/~/foo.el
进入
~/foo.el
.
~
因为目录名称通常在 Unix 系统上是个坏主意,而不仅仅是对于 Emacs。
关于emacs - emacs 中的加载文件无法识别具有名为波浪号 (~) 的文件夹的路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26126141/
我是一名优秀的程序员,十分优秀!