Diogo Castro
Diogo Castro
Just ran into this issue (using nix and tasty, just like @mwu), and I thought I'd add my solution here. Wrapping `main` with [`withUtf8`](https://hackage.haskell.org/package/with-utf8-1.0.2.1/docs/Main-Utf8.html#v:withUtf8) seems to work. ```hs -- before...
I hit this same issue (v2.2.4). Thanks for the workaround @aborg0 ! Here's my scenario: ```scala // doesn't work def parseInt[_: P]: P[Int] = CharsWhileIn("0-9").rep.!.flatMapX { str => Try(str.toInt) match...
Yup, if I change my `hie.yaml` to this, HLS still displays the same working dir: ``` cradle: cabal: - path: "./code/first/src" component: "lib:first" - path: "./code/second/src" component: "lib:second" ``` I...
@Vlix Yup, ended up using `makeRelativeToProject`, thanks to @jneira's comment on #481 :) Thanks, it worked wonders!
### tuples Ah, I keep forgetting about `liftA/M` :sweat_smile: Yea I agree, not worth the effort then! ### total Good point, we should definitely give the user a better error...
@HuwCampbell oh awesome! Do you want to go ahead and submit a PR with that? Otherwise I'm ok doing it too. On a related topic, I'm not sure what the...
@moodmosaic so far we have `total`, `evalNF` and `nf` on the table, do any of these sound reasonable? Personally, I think `evalNF` pairs well with the existing `eval` for whnf,...
@moodmosaic Let's go with `total` then :) One more suggestion if I may, something similar to quickcheck's implication operator ( `==>`): ```haskell imply :: Monad m => Bool -> PropertyT...
@moodmosaic No problem at all, it's understandable :) Alright, I'll create a PR then. On `guard`, I was under the false impression that it would fail the test instead of...
@konn Thank you for your reply, but I don't think the Splice Plugin solves my use case. I'm writing some TH code and I need a feedback loop, I want...