基本上我有一个干净的.emacs
,我为它添加了必要的行
;; Interactively Do Things (highly recommended, but not strictly required)
(require 'ido)
(ido-mode t)
;; Rinari
(add-to-list 'load-path "~/home/stardust/rinari")
(require 'rinari)
唯一改变的是我提取Rinari的位置。当我尝试使用这些更改打开emacs时,我收到此错误。谁可能知道问题是什么?
Warning (initialization): An error occurred while loading `/home/stardust/.emacs':
File error: Cannot open load file, rinari
To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file. Start Emacs with
the `--debug-init' option to view a complete error backtrace.
答案 0 :(得分:3)
我怀疑Rinari路径前面的~
是多余的,应该删除。