Emacs 中的 Clojure 文档

发布于 2024-12-24 00:57:52 字数 207 浏览 1 评论 0原文

是否可以在Emacs中查看Clojure函数文档?也就是说,我可以配置 Emacs 来查找光标下的 Clojure 函数吗?

我正在使用 clojure 模式和 SLIME。奇怪的是,我什至无法在 SLIME 的 repl 中使用 aproposdir,尽管它们是由 lein repl 自动加载的。

Is it possible to view Clojure function documentation in Emacs? Namely, can I configure Emacs to lookup Clojure functions under the cursor?

I'm using clojure-mode and SLIME. Oddly, I can't even use apropos or dir in SLIME's repl, although they're automatically loaded by lein repl.

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

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

发布评论

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

评论(3

七月上 2024-12-31 00:57:52

尝试一下函数 slime-describe-symbol,它通常绑定到 Cc Cd d

将点放在函数名称附近的某个位置,然后点击 Cc,然后点击 Cd,然后点击 d

还有 slime-describe-function,绑定到 Cc Cd f,但我很少使用它,因为它不如前面提到的与符号相关的查找函数那么通用。

要查看所有与文档相关的功能,请按Cc Cd Ch。这些绑定并非 Clojure 特有的;相反,它们是由 SLIME 定义的,对于其他 Lisp 方言来说,即使不是更好,也同样可以工作。

Try the function slime-describe-symbol, which is usually bound to C-c C-d d.

Place the point somewhere near the function name and hit C-c, then C-d, and then d.

There's also slime-describe-function, bound to C-c C-d f, but I rarely use it, as it's less general than the aforementioned symbol-related lookup function.

To see all the documentation-related functions, press C-c C-d C-h. These bindings are not specific to Clojure; they are instead defined by SLIME, and will work as well if not better for other Lisp dialects.

清醇 2024-12-31 00:57:52

我发现 slime-aproposeldoc 小模式的组合(确保你有 swank-clojure 1.4.0,因为它修复了这两个问题)比 更好上面提到的 slime-describe-symbol/function 命令。

I find the combination of slime-apropos and eldoc minor mode (make sure you have swank-clojure 1.4.0 as it fixes both of those) better than the slime-describe-symbol/function commands mentioned above.

遗心遗梦遗幸福 2024-12-31 00:57:52

您可以从 SLIME REPL 运行(使用“clojure.repl”)。这将使 apropos 和 doc 等功能可用

From SLIME REPL you can run (use 'clojure.repl). This will make functions like apropos and doc available

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