Moritz Drexl
Moritz Drexl
Thanks for the workaround @tobiasBora, it works perfectly.
@dmvianna the following note might be relevant: #58
I can solve this issue by placing a `.dir-locals.el` file with the line `((haskell-mode . ((dante-target . "tests"))))` (or whatever your test suite is called in the cabal file) in...
Ok, I dug a little bit into this and the problem is that, fundamentally, errors thrown during interpretation of the free monad cannot be caught by the lifted `catchError`. This...
I totally see your point. I guess if we want to solve the problem once and for all then all mouse related events should return an `Event t MouseEvent`, where...
The diff now shows how the halogen approach might look like. Next step would be to populate the records for the different event result types. Interestingly, for example `uiEventScrollTop` would...
Okay, I added the properties that I think make sense. Some remarks: - I did not include properties that are deprecated, don't make sense in the context, or are not...
@garyb using the keyed version fixes that specific problem. Also thanks for pointing me to that feature. :wink: However, it introduces the weird effect that the `"foo"` text node is...
I think the problem is the Show instance of `Scientific`. Parsing to `Scientific` loses the information on whether the number was integral. So a fix would be to somehow manually...
Looking into this more, it seems that the issue with my first attempt is that the `classPath` field in the config also doesn't support the glob pattern. I'm very well...