Matti Niemenmaa
Matti Niemenmaa
Good point, I forgot about local `.sift.conf` files. Unfortunately they're restricted to the current working directory. If `.sift.conf` were picked up from parent directories similarly to `.gitignore` it'd be a...
Ah, I didn't spot that in the documentation. Using the `ExcludeFiles` option in a parent directory's `.sift.conf` indeed works. But I can't figure out a way of excluding an entire...
Personally, I use `$GIT_DIR/info/exclude` a lot so I'd very much enjoy having that feature. I haven't had any use for `core.excludesFile` so at least currently I don't miss it, but...
@Boscop The workaround I mentioned should work, i.e. throwing away the `MidiOutput` in the error, replacing it with `()`: ```rust Ok(midi.connect(&port, "").map_err(|e| ConnectError::new(e.kind(), ()))?) ```
@Boscop You only lose the `MidiOutput` you were trying to connect, which probably isn't very important to you by the time you're using `?` to propagate the error out? Depends...
In addition to the documentation, it seems that the behaviour is wrong. That first `globDir1` should certainly return `./B/C/` as well; in general `globDir1 pat` should correspond exactly to a...
Great, thanks a lot Okamoto-san! I've added `kakkun61` as a maintainer in Hackage. Shall I also transfer this repository to the @kakkun61 account? As per https://github.com/arybczak/list-tries/issues/13 I think you need...
Okay, fair enough, if that's how you want to do it. I was just thinking that maybe it doesn't make sense to keep it under my account, but I guess...
This might be the first tarball I created using `cabal new-sdist` instead of `cabal sdist`. The timestamps are probably a reproducibility feature — as https://www.haskell.org/cabal/users-guide/nix-local-build.html#cabal-new-sdist states: > These archives are...
Apparently extra-doc-files was introduced in 1.20 — according to the changelog at https://github.com/haskell/cabal/blob/master/Cabal/ChangeLog.md#12000-johan-tibell-april-2014 at least, although the docs at https://www.haskell.org/cabal/users-guide/developing-packages.html#pkg-field-extra-doc-files say it's in since 1.18. This seems to have grown...