Emacs 中的 Clojure 文档
是否可以在Emacs中查看Clojure函数文档?也就是说,我可以配置 Emacs 来查找光标下的 Clojure 函数吗?
我正在使用 clojure 模式和 SLIME。奇怪的是,我什至无法在 SLIME 的 repl 中使用 apropos
或 dir
,尽管它们是由 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试一下函数
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.
我发现
slime-apropos
和eldoc
小模式的组合(确保你有 swank-clojure 1.4.0,因为它修复了这两个问题)比更好上面提到的 slime-describe-symbol/function
命令。I find the combination of
slime-apropos
andeldoc
minor mode (make sure you have swank-clojure 1.4.0 as it fixes both of those) better than theslime-describe-symbol/function
commands mentioned above.您可以从 SLIME REPL 运行(使用“clojure.repl”)。这将使 apropos 和 doc 等功能可用
From SLIME REPL you can run (use 'clojure.repl). This will make functions like apropos and doc available