我是emacs的新手,无法弄清楚如何通过emacs运行Chicken Scheme。从Chicken Scheme Wiki我发现了一个解决方案 - 使用cluck。因此,我按照cluck.el
文件中的说明操作,并将(require 'cluck)
添加到我的.emacs
文件中。
但是,emacs无法加载.emacs
文件,因为它无法打开cluck。以下是emacs提供的错误消息:
Warning (initialization): An error occurred while loading `/Users/s2s2/.emacs':
File error: Cannot open load file, cluck
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.
此link会将您带到github上的cluck
文件。
我认为cluck
的问题是我需要其他需要的文件......我在哪里可以获得这些文件。
cluck
?cluck
通过emacs运行鸡计划解释器(csi)的命令是什么?--debug-init
选项?
醇>
如果您需要更多信息,请与我们联系。感谢您的帮助。
答案 0 :(得分:2)
按 Control - h v ,键入load-path
并按Enter键。 Emacs将打印加载.el文件的路径。如果cluck.el
所在的目录不存在,请在初始化文件中添加以下行:
(add-to-list 'load-path "~/.emacs.d/cluck/")
这假设你在~/.emacs.d/cluck/