Mitchell Dalvi Rosen

Results 292 comments of Mitchell Dalvi Rosen

stack bundles `hpack`, which generates a `.cabal` file from a `package.yaml`, so you'd still only want to restart on changes to the cabal file, no?

@codygman No, my use case was just the normal ghcid rapid feedback loop, plus re-running the application (via the repl) on every save

Another oddity that I will report here rather than open a new issue: the plugin seems to cache the first `:Ghcid` invocation. For example, running ``` :Ghcid -c 'cabal new-repl...

Fantastic! I tried it out - it's _almost_ perfect. If possible, I'd rather not have the buffer appear at all, even on the very first display. I'm going to dump...

> Not sure this is possible - at least not with a bunch of changes to how ghcid is invoked. That's unfortunate :( I may dig around the code and...

Btw, one thought about how to fix the first issue (inelegantly), if `hidden` is set, I think you could just `:quit` the ghcid terminal buffer after creating it, rather than...

Hi, friendly ping. This seems like an important PR with some critical bug fixes for some years-old tickets. Just curious, what's the status -- is this repo still maintained? (Would...

Totally agree! I was only using elm-ui to print terms because it was convenient. But it produces wonkly looking things, and should just be replaced, probably sooner rather than later.

(Assuming whatever we use instead will allow us to do fancy on-hover things etc)

Name-based search is kind of possible (and kind of implemented) right now; when loading a branch we compute mappings from name-to-term and name-to-type: https://github.com/unisonweb/elm-browser/blob/f4d5cf05c6010f4b07796c3e089a62ac87fb286d/client-src/Unison/Codebase/Branch.elm#L59 https://github.com/unisonweb/elm-browser/blob/f4d5cf05c6010f4b07796c3e089a62ac87fb286d/client-src/Unison/Codebase/Branch.elm#L55 Then search is just a...