Christopher King
Christopher King

Reputation: 10951

Why isn't Cabal hyperlinking my sources?

$ cabal --version
cabal-install version 1.22.2.0
using version 1.22.2.0 of the Cabal library 


$ cabal install --haddock-hyperlink-source gloss-juicy
Warning: /home/theking/.cabal/config: Unrecognized field hyperlink-source on
line 91

I do have hyperlink-source: True on in my config. I added the flag just to be redundant. When I look for the docs, it is all colorized and everything, but the source code isn't linkified. What am I doing wrong?

Upvotes: 4

Views: 104

Answers (1)

ErikR
ErikR

Reputation: 52049

Hopefully we're talking about the haddock command line option --hyperlinked-source (note hyperlinked).

Version 2.16.1 does not support the --hyperlinked-source option.

Version 2.16.2 does support the --hyperlinked-source option.

You might have to build 2.16.2 from the git repo:

https://github.com/haskell/haddock

Upvotes: 6

Related Questions