使用“lein swank”运行 Clojure关于 Aquamacs 问题
我安装了 leiningen 并运行 lein swank,
- sudo lein deps
- lein swank
这个问题的解决方案
大卫帮助我摆脱了麻烦。 由于 Aquamacs 内置了 SLIME,因此我不需要任何复杂的设置。我只需要一行 - (slime-setup '(slime-repl))。
I installed leiningen and ran lein swank,
- sudo lein deps
- lein swank
Aquamacs has everything about SLIME, so it's OK.
Solution to this problem
David helped me to be out of trouble.
As Aquamacs has built-in SLIME, I didn't need anything complex about the setup. I just needed one line - (slime-setup '(slime-repl)).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果我使用(slime-setup '(slime-fancy)),我也会遇到同样的问题。将其更改为 (slime-setup '(slime-repl)) 修复了它。
I had the same problem if I used (slime-setup '(slime-fancy)). Changing it to (slime-setup '(slime-repl)) fixed it.
我发现这个 所有最新版本的最简单设置。这是一个快速总结,我假设您已经安装了 leiningen。
安装 swank-clojure 插件
创建您的 clojure 项目
然后在 emacs 中打开项目中的一个 clojure 文件并运行 clojure-jack-in
您现在位于 slime 缓冲区中已加载 clojure 和项目的依赖项。
I found this the easiest setup for the latest version of everything. Here's a quick summary where I"m assuming you have leiningen installed.
Install the swank-clojure plugin
Create your clojure project
Then open one of the clojure files from your project in emacs and run clojure-jack-in
You are now in a slime buffer with clojure and the dependencies for your project loaded.
我发现我的 .emacs 中需要这个才能让它工作:
I found that I needed this in my .emacs to get it to work: