有没有一个命令行程序可以查找Scaladoc?

发布于 2024-10-02 05:04:40 字数 71 浏览 1 评论 0原文

Ruby 有一个名为 ri 的程序,您可以在其中输入“ri Array”并获取其联机帮助页。 scaladoc 有类似的东西吗?

Ruby has a program called ri where you can type in 'ri Array' and get its manpage. Is there something like that for scaladoc?

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

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

发布评论

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

评论(5

现在 Scaladoc Web“应用程序”正在通过浏览器内快速搜索的索引得到增强,这种事情应该变得容易得多,特别是现在 JDK6 中总是有一个 JS 解释器。我建议提交增强请求。 :)

Now that the Scaladoc web "app" is being enhanced with indexes for fast in-browser search, this kind of thing should become much easier, especially now that there's always a JS interpreter in JDK6. I'd suggest filing an enhancement request. :)

偏爱你一生 2024-10-09 05:04:40

据我所知,但它会很酷。我认为这不会太难,因为 scaladoc (我听说)应该是可插拔的。

Not that I know of, but it would be cool. I don't think it would be too hard to do it, given that scaladoc (I heard) is supposed to be kind of pluggable.

夜空下最亮的亮点 2024-10-09 05:04:40

vim-scaladoc 于 2012 年底发布。

vim-scaladoc was released in late 2012.

離殇 2024-10-09 05:04:40

使用像 elinks 这样的命令行浏览器,并且只有一个与 scaladoc 匹配的目录,您可以使用:

#!/bin/bash
for link in $(locate scaladoc | grep $1); do elinks $link ; done

With a command-line browser like elinks, and just one directory which matches scaladoc, you can use:

#!/bin/bash
for link in $(locate scaladoc | grep $1); do elinks $link ; done
温柔一刀 2024-10-09 05:04:40

Stefan Zeiger 的 Extradoc 可能是此工具和其他文档工具的良好基础。

Stefan Zeiger's Extradoc would probably be a good basis for this and other documentation tools.

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