repl 不起作用(clojure 框)
我想在 emacs + slime + clojure 中使用 clojure 的语法突出显示。
所以我做了以下步骤。
- 中运行 clojure box
- 在 slime-repl clojure
- 语法高亮
M-x clojure-mode 即可成功。但 repl 不起作用。我预计结果为 3。但光标闪烁。 回复没有反应。
; SLIME
user> (+ 1 2)
-K\**_ *slime-repl clojure* All L6 (Clojure Slime[clojure])----------
REPL疑似功能被关闭。
提前致谢。
BR 全昌珉
I want to use syntax highlighting for clojure in emacs + slime + clojure.
So I did following step.
- run clojure box
- M-x clojure-mode in slime-repl clojure
- syntax highlighting is success.
But repl is not working. I expect a result of 3. But cursor blinks.
repl no response.
; SLIME
user> (+ 1 2)
-K\**_ *slime-repl clojure* All L6 (Clojure Slime[clojure])----------
REPL suspected feature is turned off.
Thanks in advance.
BR
ChangMin Jeon
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是a Gist,其中包含我为 Clojure 进行的彩色 REPL 设置(不久前为回答 SO 问题而准备。 .. 我真的很感谢提出这个问题的人的鼓励!)。注意它如何使用 defadvice 来改变 SLIME 的 REPL 的行为,而不是改变 REPL 缓冲区中的主要模式。
Here's a Gist with my coloured REPL setup for Clojure (prepared a while ago in response to an SO question... I'm really grateful for the prod to the person who asked that one!). Notice how it uses
defadvice
to alter the behaviour of SLIME's REPL, rather than changing the major mode in the REPL buffer.