Miles Frain
Miles Frain
A fix is possible in the main Halogen code, but the issue only affects Hooks users, so I wouldn't consider it a regular Halogen issue. The help [docs for `emit`](https://pursuit.purescript.org/packages/purescript-halogen/5.0.0/docs/Halogen.Query.EventSource#v:emit)...
Some proposals: 1. Add a few words about `captures` to this section: https://github.com/thomashoneyman/purescript-halogen-hooks/blob/main/docs/01-Hooks-At-A-Glance.md#the-effect-hook 2. Change the language here to clarify that `captures` is not an _optional_ performance enhancement, but that...
How do you feel about adding a section with one or more exercises to each example? I'm happy to contribute exercises as I work through each section. It may also...
This library is often confused with [argonaut-codecs](https://github.com/purescript-contrib/purescript-argonaut-codecs). Could we make the names more distinct? For example, maybe rename this to `purescript-argonaut-roundtrip`?
It would be great if there was support for "block" selection objects. For example: - `vib`: "select inner block" (between parens) - `caB`: "change a Block" {including brackets} - etc....
Hi @alpacaaa I'm considering putting together a "comparison to other languages" section in the official docs and would like to use this content for the Elm page. What are your...
This guide continues to be super helpful for folks with an Elm background. Hoping to keep it current.
https://github.com/purescript/purescript-prelude/pull/165
Proposing we keep an **open** issue to track this OpenGL problem. I (and others) weren't able to find these other duplicates when searching through the issue tracker: - #435 -...
Typechecking failure with `$` (`apply`) and single-argument polymorphic functions as record fields
## Description This snippet fails to typecheck / compile: ```purs type Stuff = { foo :: forall a. a -> a , bar :: forall a. Eq a => a...