使用“lein swank”运行 Clojure关于 Aquamacs 问题

发布于 2024-09-12 03:16:15 字数 486 浏览 6 评论 0原文

我安装了 leiningen 并运行 lein swank,

  1. sudo lein deps
  2. lein swank

Aquamacs 拥有有关 SLIME,所以没关系。

这个问题的解决方案

大卫帮助我摆脱了麻烦。 由于 Aquamacs 内置了 SLIME,因此我不需要任何复杂的设置。我只需要一行 - (slime-setup '(slime-repl))。

I installed leiningen and ran lein swank,

  1. sudo lein deps
  2. 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 技术交流群。

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

发布评论

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

评论(3

等风来 2024-09-19 03:16:15

如果我使用(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.

愛上了 2024-09-19 03:16:15

我发现这个 所有最新版本的最简单设置。这是一个快速总结,我假设您已经安装了 leiningen。

安装 swank-clojure 插件

$ lein plugin install swank-clojure 1.3.2

创建您的 clojure 项目

$ lein new test-project
$ cd test-project
$ lein deps

然后在 emacs 中打开项目中的一个 clojure 文件并运行 clojure-jack-in

M-x 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

$ lein plugin install swank-clojure 1.3.2

Create your clojure project

$ lein new test-project
$ cd test-project
$ lein deps

Then open one of the clojure files from your project in emacs and run clojure-jack-in

M-x clojure-jack-in

You are now in a slime buffer with clojure and the dependencies for your project loaded.

电影里的梦 2024-09-19 03:16:15

我发现我的 .emacs 中需要这个才能让它工作:

(eval-after-load "slime"
  '(progn
     (slime-setup '(slime-fancy slime-asdf))))

I found that I needed this in my .emacs to get it to work:

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