Lennart Spitzner
Lennart Spitzner
it seems that an argument to `new-build` is ignored if there is `./some.cabal`. Or maybe it is not, but it still tries to configure for the `some` package before considering...
take an input like ~~~~.hs mySignature :: Bool -- comment 1 -- comment 2 myList = [ 1, 2, 3 ] ~~~~ Initially, the two comments are connected to `myList`,...
I am trying to exactprint individual decls. On the untransformed parsed source, exactprinting one decl works, but it inserts newlines corresponding to the position of the decl in the original...
in a setup of modules like A, B, C, D where D depends on A,B,C. If there is an error in C, after a `cabal clean`, `cabal build -wghc-shake` does...
Thanks for your continued work on ghcid. It is an essential haskell tool. These are a few random fixes for minor issues. I have put them in four different commits...
`L` does not have `id`, but there is a compose. Also, does `R` have the same instance?
``` .hs instance Binary (Proxy a) where put _ = put () get = (get :: Get ()) $> Proxy ``` or some such. "base:Data.Proxy - Since: 4.7.0.0"
for me on a recent subl3, `on_post_save` closes the window immediately after the build finishes (i.e. you get a split-second flash at best).
Greetings! ## question Is there any chance to expand the type family like this: ~~~~.hs type family Wear t f a where Wear Bare f (First a) = a Wear...