Eclipse FP无法显示文档

时间:2016-02-10 07:29:56

标签: eclipse haskell eclipse-fp

在网站here中,它显示了带有弹出文档的EclipseFP插件图片。

No documentation

^我得到的只是类型签名 - " putChar :: Char - > IO()&#34 ;.

我拥有除了Web框架和SourceGraph以及UUAGC之外的所有helper executables。 Sourcegraph未安装something else

无论如何,我没有获得任何标准库函数或我自己的用户定义函数的弹出文档。另外,我安装了Hoogle ......

Hoogle

安装后我重新打开了EclipseFP,它没有任何区别 - 没有任何功能的文档。

1 个答案:

答案 0 :(得分:1)

我搞定了!

enter image description here

在cabal安装每个Helper可执行文件(Web开发和SourceGraph除外)之后" Window>偏好> Haskell>帮助程序可执行文件",如果它们是这样写的,我可以获得关于我自己的方法的文档...

--
-- | Documentation appears in Haskell!!!
--
function signature
function

请注意,如果您尝试编写此类文档,则无法正确呈现...

--
-- | Documentation
-- | a is the Int being returned
returnInt :: Int -> Int
returnInt(a) = a

^相反,它只是打印" a是被返回的Int"