向 Lispbox 添加颜色主题

发布于 2024-11-03 18:27:33 字数 360 浏览 0 评论 0原文

我是 Common Lisp 的新手,目前正在使用 Lispbox。 我想向在 OSX 上运行的 Lispbox 添加一个颜色主题包来更改颜色主题。 我目前正在尝试使用该命令:

 (add-to-list 'load-path "~/desktop/colortheme/")

但是我不断收到相同的错误:

  Undefined function ADD-TO-LIST called with arguments (LOAD-PATH "/desktop/colortheme/").

有人可以帮助我从这里做什么吗?

预先感谢,

卡梅伦

I'm new to using Common Lisp and currently using Lispbox.
I would like to add a color-theme package to Lispbox running on OSX to change the color theme.
I'm currently trying to use the command:

 (add-to-list 'load-path "~/desktop/colortheme/")

However I keep getting the same error:

  Undefined function ADD-TO-LIST called with arguments (LOAD-PATH "/desktop/colortheme/").

Can someone please help me as to what to do from here?

Thanks in advance,

Cameron

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

琉璃繁缕 2024-11-10 18:27:33

据我所知,Lispbox 只是 Emacs、Slime 和 Clozure CL 的预配置包。我认为您可能会混淆该包中的 Emacs Lisp 和 Common Lisp 部分。您需要将显示的代码片段放入 Emacs Lisp 部分,即(在启动时获取该配置).emacs 配置文件。 REPL,即 CL-USER > 提示符,是 Common Lisp 接口,与 Emacs 的内部工作无关。

As far as I know, Lispbox is simply a preconfigured bundle of Emacs, Slime, and Clozure CL. I think that you might be confusing the Emacs Lisp and the Common Lisp parts of that bundle. You need to put the snippet you showed into the Emacs Lisp part, i.e. (to get that configuration at startup) the .emacs configuration file. The REPL, that is, the CL-USER > prompt, is the Common Lisp interface and has nothing to do with Emacs' inner workings.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文