ndmitchell / hoogle

Haskell API search engine
http://hoogle.haskell.org/
Other
738 stars 134 forks source link

hoogle search --info not yielding any additional info #139

Open erikkaplun opened 8 years ago

erikkaplun commented 8 years ago
$ hoogle forM_ --count=1
forM_ :: (Foldable t, Monad m) => t a -> (a -> m b) -> m ()
-- plus more results not shown, pass --count=11 to see more
$ hoogle forM_ --count=1 --info
forM_ :: (Foldable t, Monad m) => t a -> (a -> m b) -> m ()
-- plus more results not shown, pass --count=11 to see more

— any way to make --info work? I'm on the latest master/HEAD. Neither does --color change the output.

ndmitchell commented 8 years ago

--info is not yet supported in HEAD. Patches to add it back are most welcome (I don't think it should be too hard). I intend to add it back before a release.