Elliot Cameron

Results 354 comments of Elliot Cameron

A stop-gap measure would be to use a proxying script like [this one](https://gist.github.com/3noch/cb7c276c0b8d3e9d6f403c9a051fbf5c) and have `ghc-mod` just proxy to a nix-shell running `ghc-mod`. The same would be done for `cabal`,...

@dalaing Great. I had the same thought about a fall-back. Should be easy to add.

Oops...looks like you already do. Is the latest version not on Hackage?

I'm seeing this on Chrome too.

@indrimuska It looks like you're copying the select options into a `ul`? The `value` attribute on `li` tags is always interpreted as a number, which might be the problem: http://www.w3schools.com/tags/att_li_value.asp

I see. I was using `.val()` so perhaps that was my problem.

This is still an open sum type, rather than a closed one, correct? I don't think subclassing even allows for closed sum types. Without closed sum types you cannot [easily]...

In a dynamic language this is mostly moot because you're essentially choosing to have all your errors at runtime anyway. The only thing you could is try to throw exceptions...

@eindiran Is that Coconut syntax? I didn't realize you could define anonymous sum types that way. If so, how do you pattern match/check which of the slots is occupied? Closed...