
3 Apr
2014
3 Apr
'14
5:30 p.m.
I upgrade my emacs configuration with latest ghc-mod and all of sudden nothing works (again). When I try to load a .hs file from a project I got the first line highlighted with the error "cannot satisfy -package spec" and I cannot got type, info or doc from that file. Also I do not have anymore syntax errors highlighting I used to see.
As this message suggests, you need to install spec for testing. % cabal install spec # I don't know what the spec package is. A typo for hspec? This is because ghc-mod obtains dependency for executables, libraries *and* testing. In general, % cabal install --only-dependencies would help you. --Kazu