Steve Shuck

Results 9 issues of Steve Shuck

The split boundary has the wrong color under Neovim 8 for both light and dark modes. Neovim 7: Neovim 8: Shown in WSL2 + Windows Terminal Preview, but also observable...

Per the docs, `google-auth` and `requests` are required. I installed `google-auth` but NOT `requests`. The error message was that `google-auth` could not be found. I subsequently installed `requests` and the...

```sh $ python -c 'import yaml; print(yaml.safe_dump(yaml.safe_load(""" foo: "Y" """)))' foo: Y ``` ~Technically this isn't any more specific than a scalar, so it round-trips just fine per the spec....

From @andreasabel: > I notice though that CI does not cover all major GHC versions for mtl. I would recommend to add an autogenerated Haskell CI because this tests on...

2.3.3

Related to #155 but distinct.

2.3.3

```haskell class (Monad m) => MonadYield o m | m -> o where yield :: o -> m () ``` [pipes](https://hackage.haskell.org/package/pipes) and [conduit](https://hackage.haskell.org/package/conduit) could have instances. It shouldn't be added...

transformers

This is halfway towards #459. The other half is getting `dirEntType` itself fixed in unix, which is currently hard-coded to return `UnknownType` and effectively reverts to the current behavior of...

Something like this: ```haskell pattern (:>) :: [a] -> a -> NonEmpty a pattern xs :> x (,) xs x) where xs :> x = prependList xs $ singleton x...